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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
    background-size: 400% 400%;
    animation: backgroundShift 15s ease infinite;
    overflow-x: hidden;
    padding-top: 0px;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(168, 85, 247, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
    z-index: -2;
    animation: backgroundPulse 20s ease-in-out infinite;
}

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

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 75px;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(139, 92, 246, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -15px;
}

.logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(139, 92, 246, 0.5));
}

/* Fallback için eski h2 stili */
.nav-logo h2 {
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-size: 1.8rem;
    letter-spacing: -0.5px;
    display: none; /* Logo varsa gizle */
}

.nav-menu {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover,
.nav-link.active {
    color: #8B5CF6;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 8px;
    z-index: 1;
    top: 100%;
    left: 0;
    padding: 10px 0;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: #333;
    padding: 10px 20px;
    text-decoration: none;
    display: block;
    transition: background 0.3s ease;
}

.dropdown-content a:hover {
    background: #f8f9fa;
    color: #8B5CF6;
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.login-btn {
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
    color: white;
    text-decoration: none;
}

.register-btn {
    background: transparent;
    color: #8B5CF6;
    border: 2px solid #8B5CF6;
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.register-btn:hover {
    background: #8B5CF6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
    text-decoration: none;
}

.nav-icon {
    background: none;
    border: none;
    color: #666;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.nav-icon:hover {
    background: #f8f9fa;
    color: #8B5CF6;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 100px 0 0;
    text-align: center;
    color: white;
    background: url('assets/image/banner.png') center/cover no-repeat;
    position: relative;
    overflow: hidden;
    height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-size: cover;
    margin: 100px auto 0;
    max-width: 1300px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    animation: heroGlow 8s ease-in-out infinite;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(128, 128, 128, 0.3) 0%, rgba(128, 128, 128, 0.8) 100%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
    z-index: 2;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.icon-3d {
    position: absolute;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.2);
    animation: float 8s ease-in-out infinite;
    transform-style: preserve-3d;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

.icon-3d:hover {
    color: rgba(255, 255, 255, 0.6);
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 8px 25px rgba(255, 255, 255, 0.4));
    animation-play-state: paused;
}

.icon-megaphone {
    top: 20%;
    left: 10%;
    animation: float 6s ease-in-out infinite, pulse 3s ease-in-out infinite;
    animation-delay: 0s, 0s;
    color: #00d4ff;
    font-size: 3.5rem;
}

.icon-instagram {
    top: 30%;
    right: 15%;
    animation: floatReverse 7s ease-in-out infinite, bounce 4s ease-in-out infinite;
    animation-delay: 1s, 0.5s;
    color: #ff6b6b;
    font-size: 3.2rem;
}

.icon-chat {
    bottom: 30%;
    left: 20%;
    animation: float 8s ease-in-out infinite, rotate 20s linear infinite;
    animation-delay: 2s, 0s;
    color: #9c27b0;
    font-size: 3.8rem;
}

.icon-wifi {
    top: 60%;
    right: 25%;
    animation: floatReverse 6.5s ease-in-out infinite, pulse 2.5s ease-in-out infinite;
    animation-delay: 3s, 1s;
    color: #ffffff;
    font-size: 3rem;
}

.icon-kick {
    bottom: 15%;
    right: 8%;
    animation: float 7.5s ease-in-out infinite, bounce 3.5s ease-in-out infinite;
    animation-delay: 4s, 1.5s;
    background: linear-gradient(135deg, #00ff88, #00d4aa, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    font-size: 4rem;
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.8);
    filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.6));
}

.icon-youtube {
    top: 12%;
    right: 30%;
    animation: floatReverse 8.5s ease-in-out infinite, pulse 4s ease-in-out infinite;
    animation-delay: 5s, 2s;
    color: #ff0000;
    font-size: 3.6rem;
    filter: drop-shadow(0 0 15px rgba(255, 0, 0, 0.7));
}

.icon-star {
    bottom: 40%;
    left: 8%;
    animation: float 6.8s ease-in-out infinite, rotate 15s linear infinite;
    animation-delay: 6s, 3s;
    color: #ffd700;
    font-size: 3.4rem;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8));
}

/* Particles */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: particleFloat 20s linear infinite;
}

.particle:nth-child(1) {
    width: 4px;
    height: 4px;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 25s;
    background: rgba(0, 212, 255, 0.3);
}

.particle:nth-child(2) {
    width: 6px;
    height: 6px;
    left: 20%;
    animation-delay: 2s;
    animation-duration: 30s;
    background: rgba(255, 107, 107, 0.4);
}

.particle:nth-child(3) {
    width: 3px;
    height: 3px;
    left: 30%;
    animation-delay: 4s;
    animation-duration: 22s;
    background: rgba(255, 215, 0, 0.5);
}

.particle:nth-child(4) {
    width: 5px;
    height: 5px;
    left: 40%;
    animation-delay: 6s;
    animation-duration: 28s;
    background: rgba(156, 39, 176, 0.4);
}

.particle:nth-child(5) {
    width: 4px;
    height: 4px;
    left: 50%;
    animation-delay: 8s;
    animation-duration: 24s;
    background: rgba(0, 255, 136, 0.3);
}

.particle:nth-child(6) {
    width: 6px;
    height: 6px;
    left: 60%;
    animation-delay: 10s;
    animation-duration: 32s;
    background: rgba(255, 0, 0, 0.4);
}

.particle:nth-child(7) {
    width: 3px;
    height: 3px;
    left: 70%;
    animation-delay: 12s;
    animation-duration: 26s;
    background: rgba(255, 255, 255, 0.6);
}

.particle:nth-child(8) {
    width: 5px;
    height: 5px;
    left: 80%;
    animation-delay: 14s;
    animation-duration: 29s;
    background: rgba(138, 43, 226, 0.3);
}

.particle:nth-child(9) {
    width: 4px;
    height: 4px;
    left: 90%;
    animation-delay: 16s;
    animation-duration: 27s;
}

.particle:nth-child(10) {
    width: 6px;
    height: 6px;
    left: 95%;
    animation-delay: 18s;
    animation-duration: 31s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    25% { transform: translateY(-15px) rotate(3deg) scale(1.05); }
    50% { transform: translateY(-25px) rotate(5deg) scale(1.1); }
    75% { transform: translateY(-15px) rotate(-3deg) scale(1.05); }
}

@keyframes floatReverse {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    25% { transform: translateY(20px) rotate(-3deg) scale(0.95); }
    50% { transform: translateY(30px) rotate(-5deg) scale(0.9); }
    75% { transform: translateY(20px) rotate(3deg) scale(0.95); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.2); opacity: 1; }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes heroGlow {
    0%, 100% { 
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(138, 43, 226, 0.2);
    }
    50% { 
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(138, 43, 226, 0.4);
    }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes backgroundShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes backgroundPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}



.hero-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 90px;
}

.hero-badges {
    position: absolute;
    top: 50px;
    right: 50px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 3;
}

.badge {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    color: white;
    padding: 8px 18px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 3px 10px rgba(255, 107, 53, 0.4);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-align: center;
}

.badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.badge:hover::before {
    left: 100%;
}

.badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 15px;
    line-height: 1.1;
    text-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.hero-line1 {
    display: block;
    color: white;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
}

.hero-line2 {
    display: block;
    background: linear-gradient(135deg, #FFD700, #FFA500, #FF8C00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    animation: fadeInUp 1s ease-out 0.3s both;
    position: relative;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5));
}

.hero-line2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 2px;
    animation: expandLine 1s ease-out 1s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes expandLine {
    from {
        width: 0;
    }
    to {
        width: 80px;
    }
}

.hero-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.6s both;
    font-weight: 400;
}

/* Hero Badges */
.hero-badges {
    position: absolute;
    top: 50px;
    right: 50px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 3;
}

.badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
}

.badge-primary {
    background: linear-gradient(135deg, #FF8A65, #FF7043);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 112, 67, 0.3);
}

.badge-secondary {
    background: linear-gradient(135deg, #FF7043, #FF5722);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
}

/* Hero Content Layout */
.hero-content {
    flex: 1;
    max-width: 70%;
    z-index: 2;
}

.hero-icon {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.icon-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: white;
    border: 2px solid #8B5CF6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #8B5CF6;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.info-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    padding: 10px 20px;
    color: #495057;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.info-button:hover {
    border-color: #8B5CF6;
    background: #f0f0ff;
    color: #8B5CF6;
}

/* Service Cards New Design */
.services {
    padding: 80px 0;
    background: #f8f9fa;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.service-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.service-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: #666;
    font-size: 0.9rem;
}

.service-features i {
    color: #8B5CF6;
    font-size: 0.8rem;
}

.see-all-link {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 20px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.see-all-link:hover {
    color: #8B5CF6;
}

.service-price {
    font-size: 2rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 20px;
}

.buy-now-btn {
    width: 100%;
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.buy-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.favorite-btn {
    background: none;
    border: none;
    color: #ddd;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 5px;
}

.favorite-btn:hover {
    color: #FFD700;
    transform: scale(1.1);
}

.favorite-btn.active {
    color: #FFD700;
}

/* Service Selection */
.service-selection {
    padding: 40px 0;
    background: transparent;
    margin-top: -100px;
    position: relative;
    z-index: 10;
}

.selection-container {
    background: white;
    border-radius: 15px;
    padding: 20px 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.platform-title {
    font-size: 1rem;
    font-weight: 700;
    color: #8B5CF6;
    margin: 0;
    white-space: nowrap;
}

.platform-dropdown, .category-dropdown {
    position: relative;
    flex: 1;
    min-width: 300px;
}

.category-title {
    font-size: 1rem;
    font-weight: 700;
    color: #8B5CF6;
    margin: 0;
    white-space: nowrap;
}

.category-select-btn {
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 12px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    min-height: 50px;
}

.category-select-btn:hover {
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.category-select-btn i {
    transition: transform 0.3s ease;
    color: #667eea;
}

.category-dropdown:hover .category-select-btn i {
    transform: rotate(180deg);
}

.selected-category {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

.category-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 12px;
    margin-top: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 9999;
}

.category-dropdown:hover .category-menu,
.category-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.category-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

.category-option:last-child {
    border-bottom: none;
}

.category-option:hover {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
}

.category-option.active {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.platform-select-btn {
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 12px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    min-height: 55px;
}

.platform-select-btn:hover {
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.platform-select-btn i {
    transition: transform 0.3s ease;
    color: #667eea;
}

.platform-dropdown:hover .platform-select-btn i {
    transform: rotate(180deg);
}

.selected-platform {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

.platform-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 12px;
    margin-top: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 9999;
}

.platform-dropdown:hover .platform-menu,
.platform-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.platform-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
    pointer-events: auto;
    user-select: none;
}

.platform-option:last-child {
    border-bottom: none;
}

.platform-option:hover {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
}

.platform-option.active {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.platform-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: bold;
    background: rgba(139, 92, 246, 0.1);
    transition: all 0.3s ease;
}

.platform-option.active .platform-icon {
    background: rgba(255, 255, 255, 0.3);
}

.platform-option:hover .platform-icon {
    background: rgba(139, 92, 246, 0.2);
    transform: scale(1.05);
}

.buy-now-btn {
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    white-space: nowrap;
    min-width: 140px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.buy-now-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.buy-now-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.6);
}

.buy-now-btn:hover::before {
    left: 100%;
}

/* Recommended Services */
.recommended-services {
    padding: 100px 0 80px;
    background: #f8f9fa;
}

.recommended-header {
    text-align: center;
    margin-bottom: 50px;
}

.platform-label {
    color: #8B5CF6;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 10px;
    display: block;
}

.recommended-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.recommended-header h2 i {
    color: #8B5CF6;
    transition: transform 0.3s ease;
}

.recommended-header h2:hover i {
    transform: translateX(5px);
}

.recommended-header p {
    color: #666;
    font-size: 1.1rem;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.service-card:nth-child(1) {
    animation: slideInUp 0.6s ease-out;
}

.service-card:nth-child(2) {
    animation: slideInUp 0.6s ease-out 0.2s both;
}

.service-card:nth-child(3) {
    animation: slideInUp 0.6s ease-out 0.4s both;
}

.service-card:nth-child(4) {
    animation: slideInUp 0.6s ease-out 0.6s both;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.1), transparent);
    transition: left 0.6s ease;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.service-card:hover::before {
    left: 100%;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
}

.kick-icon {
    background: linear-gradient(135deg, #53FC18, #00FF00);
}

.service-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
}

.favorite-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #ddd;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.favorite-btn:hover {
    color: #FFD700;
    transform: scale(1.1);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: white;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card:nth-child(1) {
    animation: slideInLeft 0.6s ease-out 0.2s both;
}

.feature-card:nth-child(2) {
    animation: slideInUp 0.6s ease-out 0.4s both;
}

.feature-card:nth-child(3) {
    animation: slideInUp 0.6s ease-out 0.6s both;
}

.feature-card:nth-child(4) {
    animation: slideInRight 0.6s ease-out 0.8s both;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-card i {
    font-size: 3rem;
    color: #8B5CF6;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    color: #333;
}

.contact-item i {
    font-size: 1.5rem;
    color: #8B5CF6;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 30px 0;
}

/* Services Page Styles */
.services-hero {
    padding: 120px 0 80px;
    text-align: center;
    color: white;
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
}

.services-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.services-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.services-container {
    padding: 80px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #8B5CF6;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.service-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
}

.service-price {
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
}

.service-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 20px;
}

.service-features li {
    padding: 5px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8B5CF6;
    font-weight: bold;
}

.order-btn {
    width: 100%;
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
}

/* Dark Mode Styles */
.dark-mode {
    background: #1a1a1a;
    color: #ffffff;
}

.dark-mode .navbar {
    background: rgba(26, 26, 26, 0.95);
}

.dark-mode .nav-link {
    color: #ffffff;
}

.dark-mode .nav-link:hover,
.dark-mode .nav-link.active {
    color: #8B5CF6;
}

.dark-mode .login-btn {
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    color: white;
}

.dark-mode .login-btn:hover {
    color: white;
}

.dark-mode .register-btn {
    background: transparent;
    color: #8B5CF6;
    border-color: #8B5CF6;
}

.dark-mode .register-btn:hover {
    background: #8B5CF6;
    color: white;
}

.dark-mode .hero {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #2d2d2d 100%);
}

.dark-mode .hero-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.dark-mode .service-selection {
    background: transparent;
}

.dark-mode .selection-container {
    background: #2d2d2d;
    color: #ffffff;
}

.dark-mode .platform-title {
    color: #8B5CF6;
}

.dark-mode .platform-select-btn {
    background: rgba(45, 45, 45, 0.95);
    color: #ffffff;
    border: 2px solid rgba(102, 126, 234, 0.3);
    backdrop-filter: blur(10px);
}

.dark-mode .platform-menu {
    background: rgba(45, 45, 45, 0.95);
    border: 2px solid rgba(102, 126, 234, 0.3);
    backdrop-filter: blur(10px);
}

.dark-mode .platform-option {
    color: #ffffff;
    border-bottom: 1px solid rgba(102, 126, 234, 0.2);
}

.dark-mode .platform-option:hover {
    background: rgba(102, 126, 234, 0.2);
    color: #667eea;
}

.dark-mode .platform-option .platform-icon {
    color: #ffffff;
}

.dark-mode .platform-option span {
    color: #ffffff;
}

.dark-mode .category-option span {
    color: #ffffff;
}

.dark-mode .package-option span {
    color: #ffffff;
}

.dark-mode .selected-platform {
    color: #ffffff;
}

.dark-mode .selected-platform .platform-icon {
    color: #ffffff;
}

.dark-mode .selected-platform span {
    color: #ffffff;
}

.dark-mode .category-title {
    color: #8B5CF6;
}

.dark-mode .category-select-btn {
    background: rgba(45, 45, 45, 0.95);
    color: #ffffff;
    border: 2px solid rgba(102, 126, 234, 0.3);
    backdrop-filter: blur(10px);
}

.dark-mode .category-menu {
    background: rgba(45, 45, 45, 0.95);
    border: 2px solid rgba(102, 126, 234, 0.3);
    backdrop-filter: blur(10px);
}

.dark-mode .category-option {
    color: #ffffff;
    border-bottom: 1px solid rgba(102, 126, 234, 0.2);
}

.dark-mode .category-option .category-icon {
    color: #ffffff;
}

.dark-mode .package-option .package-icon {
    color: #ffffff;
}

.dark-mode .category-option:hover {
    background: rgba(102, 126, 234, 0.2);
    color: #667eea;
}

.dark-mode .platform-option,
.dark-mode .category-option,
.dark-mode .package-option {
    background: rgba(45, 45, 45, 0.95);
    border: 2px solid rgba(102, 126, 234, 0.3);
    color: #ffffff;
    backdrop-filter: blur(10px);
}

.dark-mode .platform-option:hover,
.dark-mode .category-option:hover,
.dark-mode .package-option:hover {
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.2);
    color: #667eea;
}

.dark-mode .step-placeholder {
    background: #333333;
    border-color: #555555;
    color: #ffffff;
}

.dark-mode .step-placeholder:hover {
    background: #444444;
    border-color: #777777;
}

.dark-mode .step-placeholder span {
    color: #ffffff;
}

.dark-mode .recommended-services {
    background: #1a1a1a;
}

.dark-mode .recommended-header h2 {
    color: #ffffff;
}

.dark-mode .recommended-header p {
    color: #cccccc;
}

.dark-mode .service-card {
    background: #2d2d2d;
    color: #ffffff;
}

.dark-mode .service-name {
    color: #ffffff;
}

.dark-mode .features {
    background: #1a1a1a;
}

.dark-mode .features h2 {
    color: #ffffff;
}

.dark-mode .feature-card {
    background: #2d2d2d;
    color: #ffffff;
}

.dark-mode .feature-card h3 {
    color: #ffffff;
}

.dark-mode .feature-card p {
    color: #cccccc;
}

.dark-mode .contact {
    background: #1a1a1a;
}

.dark-mode .contact h2 {
    color: #ffffff;
}

.dark-mode .contact-item {
    color: #ffffff;
}

/* Selection Options Styles */
.selection-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
}

.platform-option,
.category-option,
.package-option {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 10px;
    padding: 15px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.platform-option:hover,
.category-option:hover,
.package-option:hover {
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

.platform-option.active,
.category-option.active,
.package-option.active {
    border-color: #8B5CF6;
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.platform-option i {
    font-size: 1.5rem;
    color: #8B5CF6;
    margin-bottom: 5px;
    display: block;
}

.package-option {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.package-name {
    font-weight: 600;
    color: #333;
}

.package-count {
    font-size: 0.9rem;
    color: #666;
}

.package-price {
    font-weight: 700;
    color: #8B5CF6;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-actions {
        display: none;
    }

    .hero {
        height: 400px;
        padding: 80px 0 0;
        margin: 0 20px;
        max-width: calc(100% - 40px);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .icon-3d {
        font-size: 2rem;
    }

    .hero-badges {
        position: relative;
        top: auto;
        right: auto;
        flex-direction: column;
        gap: 8px;
        margin-bottom: 20px;
    }

    .badge {
        font-size: 0.7rem;
        padding: 6px 12px;
    }

    .selection-container {
        flex-direction: column;
        gap: 15px;
    }

    .selection-step {
        min-width: 100%;
    }

    .buy-now-btn {
        width: 100%;
        justify-content: center;
    }

    .selection-container {
        flex-direction: column;
        text-align: center;
    }

    .buy-now-btn {
        width: 100%;
        justify-content: center;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .service-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 350px;
        padding: 60px 0 0;
        margin: 0 15px;
        max-width: calc(100% - 30px);
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
        padding: 0 10px;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        padding: 60px 20px;
        gap: 30px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-badges {
        position: relative;
        top: 0;
        right: 0;
        margin-bottom: 20px;
        flex-direction: row;
        justify-content: center;
    }

    .service-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .icon-3d {
        font-size: 1.5rem;
    }

    .hero-badges {
        position: relative;
        top: auto;
        right: auto;
        flex-direction: column;
        align-items: center;
        gap: 6px;
        margin-bottom: 15px;
    }

    .badge {
        font-size: 0.65rem;
        padding: 5px 10px;
    }

    .hero-selection {
        padding: 20px 0;
    }

    .selection-container {
        padding: 20px;
        gap: 12px;
    }

    .service-card,
    .feature-card {
        padding: 20px;
    }

    .service-cards {
        grid-template-columns: 1fr;
    }
}

/* Modern Services Styles */
.modern-services {
    padding: 0 0 80px 0;
    background: transparent;
}

.services-header {
    text-align: center;
    margin-bottom: 5px;
}

.services-title {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    position: relative;
}

.services-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 2px;
}

.services-subtitle {
    font-size: 1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.4;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card-modern {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card-modern:hover::before {
    transform: scaleX(1);
}

.service-card-modern:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.service-icon-modern {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    position: relative;
    overflow: hidden;
}

.service-icon-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    opacity: 0.1;
    border-radius: inherit;
}

.kick-gradient {
    background: linear-gradient(135deg, #53FC18, #00FF00);
}

.twitch-gradient {
    background: linear-gradient(135deg, #9146FF, #6441A4);
}

.instagram-gradient {
    background: linear-gradient(135deg, #E4405F, #C13584, #833AB4);
}

.youtube-gradient {
    background: linear-gradient(135deg, #FF0000, #CC0000);
}

.discord-gradient {
    background: linear-gradient(135deg, #5865F2, #7289DA);
}

.favorite-btn-modern {
    background: none;
    border: none;
    color: #ccc;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.favorite-btn-modern:hover {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
    transform: scale(1.1);
}

.service-content {
    margin-bottom: 25px;
}

.service-name-modern {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.service-features {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.feature-tag {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.service-price-modern {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2ed573, #1dd1a1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-arrow {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.service-card-modern:hover .service-arrow {
    transform: translateX(5px) scale(1.1);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* Dark Mode for Modern Services */
.dark-mode .modern-services {
    background: transparent;
}

.dark-mode .service-card-modern {
    background: rgba(45, 45, 45, 0.95);
    border: 1px solid rgba(68, 68, 68, 0.3);
    color: #ffffff;
}

.dark-mode .service-name-modern {
    color: #ffffff;
}

.dark-mode .service-description {
    color: #cccccc;
}

.dark-mode .service-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.dark-mode .favorite-btn-modern {
    color: #cccccc;
}

.dark-mode .favorite-btn-modern:hover {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

/* Responsive Design for Modern Services */
@media (max-width: 768px) {
    .services-title {
        font-size: 2.2rem;
    }
    
    .services-subtitle {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card-modern {
        padding: 25px;
    }
    
    .service-icon-modern {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .service-name-modern {
        font-size: 1.2rem;
    }
    
    .service-description {
        font-size: 0.9rem;
    }
}

/* 404 Error Page Styles */
.error-404 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.error-404::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(168, 85, 247, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
    z-index: -1;
}

.error-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.error-animation {
    position: relative;
    margin-bottom: 40px;
}

.error-number {
    font-size: 8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    transition: all 0.5s ease;
    text-shadow: 0 0 0 rgba(102, 126, 234, 0.5);
}

.error-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: #667eea;
    opacity: 0.3;
    transition: all 0.5s ease;
}

.error-text {
    margin-bottom: 40px;
}

.error-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.error-description {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.error-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    border: 2px solid rgba(102, 126, 234, 0.2);
}

.btn-secondary:hover {
    background: rgba(102, 126, 234, 0.2);
    transform: translateY(-2px);
}

.error-suggestions {
    text-align: left;
}

.error-suggestions h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    text-align: center;
}

.suggestion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.suggestion-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(102, 126, 234, 0.1);
    border-radius: 15px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.suggestion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(102, 126, 234, 0.3);
}

.suggestion-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    font-weight: bold;
}

.suggestion-card span {
    font-weight: 600;
    font-size: 1rem;
}

/* Dark Mode for 404 Page */
.dark-mode .error-404 {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
}

.dark-mode .error-content {
    background: rgba(45, 45, 45, 0.95);
    border: 1px solid rgba(68, 68, 68, 0.3);
}

.dark-mode .error-title {
    color: #ffffff;
}

.dark-mode .error-description {
    color: #cccccc;
}

.dark-mode .error-suggestions h3 {
    color: #ffffff;
}

.dark-mode .suggestion-card {
    background: rgba(45, 45, 45, 0.8);
    border: 2px solid rgba(102, 126, 234, 0.2);
    color: #ffffff;
}

.dark-mode .suggestion-card:hover {
    border-color: rgba(102, 126, 234, 0.4);
}

/* Responsive Design for 404 Page */
@media (max-width: 768px) {
    .error-number {
        font-size: 6rem;
    }
    
    .error-title {
        font-size: 2rem;
    }
    
    .error-description {
        font-size: 1rem;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .suggestion-grid {
        grid-template-columns: 1fr;
    }
    
    .error-content {
        padding: 30px 20px;
        margin: 20px;
    }
}

/* Footer Styles for 404 Page */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
    padding: 60px 0 20px;
    margin-top: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-section p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #667eea;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(102, 126, 234, 0.1);
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #667eea;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #999999;
    margin: 0;
}

/* Dark Mode for Footer */
.dark-mode .footer {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
}

.dark-mode .footer-section h4 {
    color: #ffffff;
}

.dark-mode .footer-section p {
    color: #cccccc;
}

.dark-mode .footer-section ul li a {
    color: #cccccc;
}

.dark-mode .footer-section ul li a:hover {
    color: #667eea;
}

.dark-mode .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.dark-mode .footer-bottom p {
    color: #999999;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Auth Pages Styles */
.auth-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.auth-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(168, 85, 247, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
    z-index: -1;
}

.auth-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.auth-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.auth-header {
    text-align: center;
    margin-bottom: 40px;
}

.auth-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.auth-header p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}


.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.input-group i {
    position: absolute;
    left: 15px;
    color: #667eea;
    font-size: 1rem;
    z-index: 2;
}

.input-group input {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    outline: none;
}

.input-group input:focus {
    border-color: #667eea;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.password-toggle {
    position: absolute;
    right: 15px;
    background: none;
    border: none;
    color: #667eea;
    cursor: pointer;
    font-size: 1rem;
    z-index: 2;
    transition: color 0.3s ease;
}

.password-toggle:hover {
    color: #764ba2;
}

.password-strength {
    margin-top: 8px;
}

.strength-bar {
    width: 100%;
    height: 4px;
    background: #e9ecef;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 5px;
}

.strength-fill {
    height: 100%;
    width: 0%;
    background: #ff4757;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.strength-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: #666;
}

.form-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    color: #333;
}

.checkbox-container input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark {
    background: #667eea;
    border-color: #667eea;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.forgot-link, .terms-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.forgot-link:hover, .terms-link:hover {
    color: #764ba2;
}

.auth-btn {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.auth-divider {
    text-align: center;
    position: relative;
    margin: 30px 0;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(102, 126, 234, 0.2);
}

.auth-divider span {
    background: rgba(255, 255, 255, 0.95);
    padding: 0 20px;
    color: #666;
    font-size: 0.9rem;
    position: relative;
}

.social-login {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-btn {
    width: 100%;
    padding: 15px 30px;
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.8);
    color: #333;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.social-btn:hover {
    background: rgba(102, 126, 234, 0.1);
    border-color: #667eea;
    transform: translateY(-2px);
}

.google-btn:hover {
    background: rgba(219, 68, 55, 0.1);
    border-color: #db4437;
    color: #db4437;
}

.discord-btn:hover {
    background: rgba(114, 137, 218, 0.1);
    border-color: #7289da;
    color: #7289da;
}

.auth-footer {
    text-align: center;
    margin-top: 30px;
}

.auth-footer p {
    color: #666;
    font-size: 1rem;
}

.auth-footer a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.auth-footer a:hover {
    color: #764ba2;
}

.auth-info {
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-content {
    text-align: center;
    max-width: 500px;
}

.info-logo {
    margin-bottom: 30px;
}

.auth-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.auth-logo:hover {
    transform: scale(1.05);
}

.info-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.info-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

.info-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.feature-item i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.feature-item span {
    font-size: 1rem;
    color: #333;
    font-weight: 500;
}

/* Notifications */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border-radius: 12px;
    padding: 15px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    border-left: 4px solid #667eea;
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    border-left-color: #2ed573;
}

.notification-error {
    border-left-color: #ff4757;
}

.notification-info {
    border-left-color: #3742fa;
}

.notification i {
    font-size: 1.2rem;
}

.notification-success i {
    color: #2ed573;
}

.notification-error i {
    color: #ff4757;
}

.notification-info i {
    color: #3742fa;
}

/* Dark Mode for Auth Pages */
.dark-mode .auth-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
}

.dark-mode .auth-card {
    background: rgba(45, 45, 45, 0.95);
    border: 1px solid rgba(68, 68, 68, 0.3);
}

.dark-mode .auth-header h1 {
    color: #ffffff;
}

.dark-mode .auth-header p {
    color: #cccccc;
}

.dark-mode .form-group label {
    color: #ffffff;
}

.dark-mode .input-group input {
    background: rgba(45, 45, 45, 0.8);
    border-color: rgba(102, 126, 234, 0.3);
    color: #ffffff;
}

.dark-mode .input-group input:focus {
    background: rgba(45, 45, 45, 1);
    border-color: #667eea;
}

.dark-mode .checkbox-container {
    color: #ffffff;
}

.dark-mode .auth-footer p {
    color: #cccccc;
}

.dark-mode .info-content h2 {
    color: #ffffff;
}

.dark-mode .info-content p {
    color: #cccccc;
}

.dark-mode .feature-item span {
    color: #ffffff;
}

.dark-mode .social-btn {
    background: rgba(45, 45, 45, 0.8);
    border-color: rgba(102, 126, 234, 0.3);
    color: #ffffff;
}

.dark-mode .auth-divider span {
    background: rgba(45, 45, 45, 0.95);
    color: #cccccc;
}

.dark-mode .auth-logo {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.dark-mode .notification {
    background: #2d2d2d;
    color: #ffffff;
}

/* Responsive Design for Auth Pages */
@media (max-width: 968px) {
    .auth-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .auth-info {
        order: -1;
    }
    
    .info-content {
        text-align: center;
    }
    
    .feature-item {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .auth-card {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .auth-header h1 {
        font-size: 2rem;
    }
    
    .info-content h2 {
        font-size: 1.8rem;
    }
    
    .notification {
        right: 10px;
        left: 10px;
        transform: translateY(-100px);
    }
    
    .notification.show {
        transform: translateY(0);
    }
}

/* Alert Styles */
.alert {
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    font-weight: 500;
    animation: slideInDown 0.3s ease-out;
}

.alert i {
    margin-right: 10px;
    font-size: 18px;
}

.alert-error {
    background-color: #fee;
    color: #c53030;
    border: 1px solid #feb2b2;
}

.alert-success {
    background-color: #f0fff4;
    color: #2f855a;
    border: 1px solid #9ae6b4;
}

.alert-info {
    background-color: #ebf8ff;
    color: #2b6cb0;
    border: 1px solid #90cdf4;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Profile Page Styles */
.profile-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
}

.profile-container {
    max-width: 800px;
    margin: 0 auto;
}

.profile-header {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.profile-avatar {
    margin-right: 30px;
}

.profile-avatar i {
    font-size: 4rem;
    color: #667eea;
}

.profile-info h1 {
    color: #2d3748;
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.profile-info p {
    color: #718096;
    font-size: 1.1rem;
}

.profile-content {
    display: grid;
    gap: 30px;
}

.profile-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.card-header {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e8f0;
}

.card-header h3 {
    color: #2d3748;
    font-size: 1.3rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.card-header i {
    margin-right: 10px;
    color: #667eea;
}

.profile-card .form-group {
    margin-bottom: 20px;
}

.profile-card label {
    display: block;
    margin-bottom: 8px;
    color: #4a5568;
    font-weight: 500;
}

.profile-card input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.profile-card input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.btn-primary, .btn-secondary {
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.btn-secondary {
    background: #e2e8f0;
    color: #4a5568;
}

.btn-secondary:hover {
    background: #cbd5e0;
    transform: translateY(-2px);
}

.btn-primary i, .btn-secondary i {
    margin-right: 8px;
}

.account-info {
    display: grid;
    gap: 15px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #f7fafc;
    border-radius: 8px;
}

.info-item .label {
    font-weight: 500;
    color: #4a5568;
}

.info-item .value {
    color: #2d3748;
    font-weight: 600;
}

.status-active {
    color: #38a169 !important;
}

.status-inactive {
    color: #e53e3e !important;
}

.profile-btn, .logout-btn {
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    margin-left: 10px;
}

.profile-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.profile-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.logout-btn {
    background: #e53e3e;
    color: white;
}

.logout-btn:hover {
    background: #c53030;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(229, 62, 62, 0.3);
}

.profile-btn i, .logout-btn i {
    margin-right: 8px;
}

/* Responsive Profile */
@media (max-width: 768px) {
    .profile-header {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-avatar {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .profile-info h1 {
        font-size: 2rem;
    }
    
    .info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .profile-btn, .logout-btn {
        margin-left: 5px;
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}