:root {
    --bg-color: #1a1a1a;
    --text-color: #ffffff;
    --link-bg: #ffffff;
    --link-color: #000000;
    --dropdown-bg: #f5f5f5;
    --hover-bg: #e8e8e8;
    --gold: #D4AF37;
    --gold-hover: #B4941F;
    
    /* Sosyal medya renkleri */
    --whatsapp: #25D366;
    --whatsapp-hover: #1FB355;
    --instagram-gradient: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    --instagram-hover: linear-gradient(45deg, #e07d1e 0%, #d55426 25%, #c91530 50%, #b91854 75%, #a90c75 100%);
    --telegram: #26A5E4;
    --telegram-hover: #0088cc;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 680px;
    margin: 0 auto;
    padding: 40px 20px;
}

.profile {
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 15px;
    padding: 5px;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-img img {
    width: 100%;
    height: 100%;
    transform: scale(0.85);
}

.profile h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

.bio {
    color: #e0e0e0;
    font-size: 16px;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.link-item {
    background: var(--link-bg);
    color: var(--link-color);
    padding: 16px 20px;
    border-radius: 8px;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.2s ease;
    border: none;
    width: 100%;
    font-size: 16px;
    cursor: pointer;
}

.link-item[href*="telegram"] {
    background: var(--telegram) !important;
    color: white !important;
}

.link-item[href*="telegram"]:hover {
    background: var(--telegram-hover) !important;
    transform: scale(1.02);
}

.link-item[href*="kazeeofficial.com"],
.link-item[href*="kazee.com.tr"] {
    background: var(--gold) !important;
    color: black !important;
}

.link-item[href*="kazeeofficial.com"]:hover,
.link-item[href*="kazee.com.tr"]:hover {
    background: var(--gold-hover) !important;
}

.link-item:hover {
    transform: scale(1.02);
    background: var(--hover-bg);
}

.dropdown {
    position: relative;
    width: 100%;
}

.dropdown-btn {
    text-align: left;
}

.dropdown-content {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dropdown-bg);
    border-radius: 8px;
    margin-top: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    opacity: 0;
}

.dropdown-content.active {
    max-height: 400px;
    opacity: 1;
    overflow-y: auto;
}

.dropdown-btn i.fas {
    transition: transform 0.3s ease;
}

.dropdown-btn.active i.fas {
    transform: rotate(180deg);
}

.whatsapp-dropdown {
    background: var(--whatsapp) !important;
    color: white !important;
}

.whatsapp-dropdown:hover {
    background: var(--whatsapp-hover) !important;
}

.instagram-dropdown {
    background: var(--instagram-gradient) !important;
    color: white !important;
}

.instagram-dropdown:hover {
    background: var(--instagram-hover) !important;
}

.whatsapp-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    text-decoration: none;
    color: var(--link-color);
    transition: background-color 0.2s ease;
    justify-content: space-between;
    border-left: 4px solid var(--whatsapp);
    position: relative;
}

.whatsapp-item .flags {
    order: -1;
    padding-right: 15px;
    border-right: 1px solid #e0e0e0;
}

.whatsapp-item .contact-info {
    margin-left: auto;
    font-weight: 600;
    font-size: 14px;
    padding-left: 15px;
    flex-grow: 1;
    text-align: right;
}

.instagram-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    text-decoration: none;
    color: var(--link-color);
    transition: background-color 0.2s ease;
    border-left: 4px solid #bc1888;
}

.instagram-item:hover {
    background-color: rgba(188, 24, 136, 0.1) !important;
}

.flags {
    display: flex;
    gap: 8px;
    margin-right: 12px;
}

.fi {
    font-size: 1.2em;
}

.contact-info {
    flex-grow: 1;
}

i.fab, i.fas {
    margin-right: 8px;
    font-size: 1.2em;
}

/* Scrollbar styling */
.dropdown-content::-webkit-scrollbar {
    width: 8px;
}

.dropdown-content::-webkit-scrollbar-track {
    background: var(--dropdown-bg);
    border-radius: 4px;
}

.dropdown-content::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.dropdown-content::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.social-icon {
    color: var(--text-color);
    font-size: 24px;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.social-icon:hover {
    transform: scale(1.2);
}

footer {
    text-align: center;
}

.cookie-text {
    color: #888;
    font-size: 14px;
    cursor: pointer;
}

.telegram-btn {
    background-color: #26A5E4 !important;
    color: white !important;
}

.telegram-btn:hover {
    background-color: #0088cc !important;
    transform: scale(1.02);
}

@media (max-width: 480px) {
    .container {
        padding: 20px 16px;
    }
    
    .profile-img {
        width: 80px;
        height: 80px;
    }
    
    .profile h1 {
        font-size: 20px;
    }
    
    .flags {
        gap: 4px;
    }
    
    .fi {
        font-size: 1em;
    }
}
