:root {
    --primary: #7C3AED;
    --primary-hover: #6D28D9;
    --accent: #10B981;
    --bg-dark: #050507;
    --bg-card: #0F0F13;
    --text-main: #F9FAFB;
    --text-muted: #9CA3AF;
    --border: rgba(255, 255, 255, 0.08);
    --glass: rgba(255, 255, 255, 0.03);
    --gradient: linear-gradient(90deg, #7C3AED, #EC4899);
}

.theme-preview {
    transition: all 0.3s ease;
    min-height: 120px;
}

.h33 {
    margin-top: 10px;
}

.color-picker-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.color-picker {
    background: var(--bg-card);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.color-picker label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #ffffff;
    font-size: 14px;
}

.color-input-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
}

.color-input {
    width: 50px;
    height: 40px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    background: transparent;
}

.color-input::-webkit-color-swatch-wrapper {
    padding: 0;
}

.color-input::-webkit-color-swatch {
    border: 2px solid var(--border);
    border-radius: 4px;
}

.color-text {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: monospace;
    font-size: 14px;
}

.input-with-label {
    margin-bottom: 15px;
}

.input-with-label label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.range-input {
    width: 100%;
    margin: 10px 0;
}

.select-input {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: var(--bg-dark);
    color: white;
}

#radiusValue {
    display: inline-block;
    margin-left: 10px;
    font-weight: 600;
    color: #ffffff;
}

.preview-button {
    transition: all 0.3s ease;
    font-weight: 600;
}

.grid-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 1200px) {
    .grid-layout {
        grid-template-columns: 1fr;
    }
}


.main-container {
    padding: 60px 8%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.profile-card {
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px;
    width: 100%;
    max-width: 950px;
}

.grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
    align-items: start;
}

.column h3 {
    font-size: 1.1rem;
    color: #c1c1c1;
    margin-bottom: 15px;
    border-bottom: 1px solid #c1c1c1;
    padding-bottom: 8px;
}

.Profile-Links{
    margin-bottom: 15px;
}

.btn-send-profile{
    padding: 5px;
    border-radius: 1px;
    background: #7C3AED;
    text-decoration: none;
    color: white;
    margin-left: 10px;
    border-radius: 15px;
}

input,
textarea {
    width: 100%;
    padding: 12px;
    border-radius: 15px;
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: white;
    margin-bottom: 15px;
    outline: none;
}

.btn-primary {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.2s;
    border: none;
}

.btn-primary:hover {
    background: #475569;
}

.btn-secondary {
    width: 100%;
    padding: 10px;
    background: var(--primary-hover);
    color: #cbd5e1;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    margin-bottom: 20px;
}

.link-entry,
.social-entry {
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 15px;
    position: relative;
    border-color: var(--border);
}

.btn-remove {
    position: absolute;
    top: 5px;
    right: 5px;
    background: none;
    border: none;
    color: #ef4444;
    cursor: pointer;
}


footer {
    text-align: center;
    padding: 40px 0;
    color: #64748b;
}

@media screen and (max-width: 670px) {
    .grid-layout{
        display: block;
    }

}

