/* ===== GLOBAL STYLES ===== */
:root {
    --color-1: #FF6B9D;
    --color-2: #4ECDC4;
    --color-3: #FFE66D;
    --color-4: #A78BFA;
    --color-5: #FB7185;
    --color-6: #34D399;
    --color-7: #60A5FA;
    --color-8: #F472B6;
    --dark: #0F172A;
    --dark-light: #1E293B;
    --text: #FFFFFF;
    --text-light: rgba(255, 255, 255, 0.8);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* ===== ANIMATED COLORFUL BACKGROUND ===== */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 157, 0.3) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(78, 205, 196, 0.3) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(255, 230, 109, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 10% 80%, rgba(167, 139, 250, 0.3) 0%, transparent 40%),
        radial-gradient(circle at 90% 20%, rgba(251, 113, 133, 0.3) 0%, transparent 40%);
    animation: backgroundRotate 20s ease-in-out infinite;
    z-index: -1;
}

@keyframes backgroundRotate {
    0%, 100% {
        transform: rotate(0deg) scale(1);
        opacity: 1;
    }
    25% {
        transform: rotate(5deg) scale(1.05);
        opacity: 0.9;
    }
    50% {
        transform: rotate(0deg) scale(1.1);
        opacity: 0.8;
    }
    75% {
        transform: rotate(-5deg) scale(1.05);
        opacity: 0.9;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ===== HEADER ===== */
.header {
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    border-bottom: 3px solid;
    border-image: linear-gradient(90deg, var(--color-1), var(--color-2), var(--color-3), var(--color-1)) 1;
    position: relative;
}

.header::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-1), var(--color-2), var(--color-3), var(--color-4));
    animation: borderGlow 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes borderGlow {
    0%, 100% {
        background: linear-gradient(90deg, var(--color-1), var(--color-2), var(--color-3), var(--color-1));
        filter: hue-rotate(0deg);
    }
    33% {
        background: linear-gradient(90deg, var(--color-2), var(--color-3), var(--color-4), var(--color-2));
        filter: hue-rotate(60deg);
    }
    66% {
        background: linear-gradient(90deg, var(--color-3), var(--color-4), var(--color-1), var(--color-3));
        filter: hue-rotate(120deg);
    }
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text);
    font-size: 1.5rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.logo i {
    font-size: 2rem;
    background: linear-gradient(45deg, var(--color-1), var(--color-2), var(--color-3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: logoRotate 3s linear infinite;
}

@keyframes logoRotate {
    0% {
        filter: hue-rotate(0deg);
    }
    100% {
        filter: hue-rotate(360deg);
    }
}

.nav {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-1), var(--color-2));
    transition: width 0.3s ease;
}

.nav a:hover,
.nav a.active {
    color: var(--text);
    background: rgba(255, 107, 157, 0.1);
}

.nav a:hover::before,
.nav a.active::before {
    width: 80%;
}

.mobile-menu-toggle {
    display: none;
    background: linear-gradient(135deg, var(--color-1), var(--color-2));
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    transform: scale(1.05);
}

/* ===== HERO SECTION ===== */
.hero-section {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text {
    animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-1), var(--color-2));
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: badgeBounce 3s ease-in-out infinite;
    box-shadow: 0 5px 20px rgba(255, 107, 157, 0.3);
}

@keyframes badgeBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(90deg, var(--color-1), var(--color-2), var(--color-3), var(--color-4));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGradient 3s ease-in-out infinite;
}

@keyframes titleGradient {
    0%, 100% {
        filter: hue-rotate(0deg);
    }
    50% {
        filter: hue-rotate(90deg);
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-subtitle strong {
    color: var(--color-1);
    font-weight: 700;
}

.hero-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
}

.hero-feature-item i {
    color: var(--color-2);
    font-size: 1.2rem;
}

.hero-image-wrapper {
    animation: fadeInRight 1s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== COUPLE CHAT BOX ===== */
.couple-chat-box {
    position: relative;
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 107, 157, 0.3);
    animation: chatBoxFloat 4s ease-in-out infinite;
    overflow: hidden;
    width: 100%;
    max-width: 600px;
}

@keyframes chatBoxFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 107, 157, 0.2);
}

.chat-avatars {
    display: flex;
    gap: 0.5rem;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
}

.avatar-1 {
    background: linear-gradient(135deg, var(--color-1), var(--color-2));
    animation: avatarPulse1 2s ease-in-out infinite;
}

.avatar-2 {
    background: linear-gradient(135deg, var(--color-3), var(--color-4));
    animation: avatarPulse2 2s ease-in-out infinite;
}

@keyframes avatarPulse1 {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(255, 107, 157, 0.3);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 8px 25px rgba(255, 107, 157, 0.5);
    }
}

@keyframes avatarPulse2 {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(255, 230, 109, 0.3);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 8px 25px rgba(255, 230, 109, 0.5);
    }
}

.chat-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-2);
    font-weight: 600;
}

.status-dot {
    width: 12px;
    height: 12px;
    background: var(--color-2);
    border-radius: 50%;
    animation: statusBlink 2s ease-in-out infinite;
}

@keyframes statusBlink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

.chat-messages {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 1rem;
    padding-right: 0.5rem;
}

.chat-messages::-webkit-scrollbar {
    width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--color-1), var(--color-2));
    border-radius: 10px;
}

.message {
    display: flex;
    animation: messageSlideIn 0.5s ease-out;
}

@keyframes messageSlideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message-left {
    justify-content: flex-start;
}

.message-right {
    justify-content: flex-end;
}

.message-bubble {
    max-width: 80%;
    padding: 1rem 1.5rem;
    border-radius: 20px;
    font-size: 0.95rem;
    line-height: 1.5;
    position: relative;
}

.message-left .message-bubble {
    background: linear-gradient(135deg, var(--color-1), var(--color-5));
    color: white;
    border-bottom-left-radius: 5px;
    box-shadow: 0 5px 15px rgba(255, 107, 157, 0.3);
}

.message-right .message-bubble {
    background: linear-gradient(135deg, var(--color-2), var(--color-6));
    color: white;
    border-bottom-right-radius: 5px;
    box-shadow: 0 5px 15px rgba(78, 205, 196, 0.3);
}

.message-bubble i {
    animation: heartBeat 1s ease-in-out infinite;
}

@keyframes heartBeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.chat-typing {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    animation: typingPulse 2s ease-in-out infinite;
}

@keyframes typingPulse {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
}

.typing-indicator {
    display: flex;
    gap: 5px;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: var(--color-2);
    border-radius: 50%;
    animation: typingDot 1.4s ease-in-out infinite;
}

.typing-indicator span:nth-child(1) {
    animation-delay: 0s;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingDot {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.7;
    }
    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

.typing-text {
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
}

.chat-sparkles {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.sparkle {
    font-size: 1.5rem;
    animation: sparkleFloat 3s ease-in-out infinite;
    opacity: 0;
}

.sparkle:nth-child(1) {
    animation-delay: 0s;
}

.sparkle:nth-child(2) {
    animation-delay: 1s;
}

.sparkle:nth-child(3) {
    animation-delay: 2s;
}

@keyframes sparkleFloat {
    0%, 100% {
        opacity: 0;
        transform: translateY(0) scale(0);
    }
    25% {
        opacity: 1;
        transform: translateY(-10px) scale(1.2);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-20px) scale(1);
    }
    75% {
        opacity: 1;
        transform: translateY(-30px) scale(1.2);
    }
}

/* ===== CHAT LOGIN BOX ===== */
.chat-login-section {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero-content-with-login {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text-left {
    animation: fadeInRight 1s ease-out;
}

.chat-login-box-wrapper {
    animation: fadeInLeft 1s ease-out;
}

.couple-chat-section {
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.hero-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.chat-login-box {
    position: relative;
    width: 100%;
    max-width: 100%;
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 0 50px rgba(255, 107, 157, 0.1);
    border: 3px solid transparent;
    animation: boxGlowRotate 4s ease-in-out infinite;
    overflow: hidden;
}

.chat-login-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 107, 157, 0.1), transparent);
    animation: boxShine 3s ease-in-out infinite;
}

.chat-login-box::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 25px;
    background: linear-gradient(45deg, var(--color-1), var(--color-2), var(--color-3), var(--color-4));
    z-index: -1;
    animation: borderRotate 3s linear infinite;
}

@keyframes boxGlowRotate {
    0%, 100% {
        box-shadow: 
            0 20px 60px rgba(255, 107, 157, 0.3),
            inset 0 0 50px rgba(255, 107, 157, 0.1),
            0 0 30px rgba(255, 107, 157, 0.2);
    }
    33% {
        box-shadow: 
            0 20px 60px rgba(78, 205, 196, 0.3),
            inset 0 0 50px rgba(78, 205, 196, 0.1),
            0 0 30px rgba(78, 205, 196, 0.2);
    }
    66% {
        box-shadow: 
            0 20px 60px rgba(255, 230, 109, 0.3),
            inset 0 0 50px rgba(255, 230, 109, 0.1),
            0 0 30px rgba(255, 230, 109, 0.2);
    }
}

@keyframes boxShine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

@keyframes borderRotate {
    0% {
        filter: hue-rotate(0deg);
    }
    100% {
        filter: hue-rotate(360deg);
    }
}

.box-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.box-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--color-1), var(--color-2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 10px 40px rgba(255, 107, 157, 0.4);
    animation: iconFloat 3s ease-in-out infinite, iconRotate 4s linear infinite;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.1);
    }
}

@keyframes iconRotate {
    0% {
        filter: hue-rotate(0deg) drop-shadow(0 0 10px rgba(255, 107, 157, 0.5));
    }
    100% {
        filter: hue-rotate(360deg) drop-shadow(0 0 20px rgba(78, 205, 196, 0.5));
    }
}

.box-title {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--color-1), var(--color-2), var(--color-3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleShimmer 2s ease-in-out infinite;
}

@keyframes titleShimmer {
    0%, 100% {
        filter: hue-rotate(0deg);
    }
    50% {
        filter: hue-rotate(90deg);
    }
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 1.2rem;
    animation: inputIconPulse 2s ease-in-out infinite;
}

@keyframes inputIconPulse {
    0%, 100% {
        color: var(--text-light);
    }
    50% {
        color: var(--color-1);
    }
}

.form-group input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 107, 157, 0.3);
    border-radius: 12px;
    color: var(--text);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder {
    color: var(--text-light);
}

.form-group input:focus {
    outline: none;
    border-color: var(--color-1);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(255, 107, 157, 0.3);
}

.age-warning {
    text-align: center;
    color: var(--color-3);
    font-size: 0.9rem;
    margin-top: 1rem;
    font-weight: 600;
}

.btn-login {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--color-1), var(--color-2));
    border: none;
    border-radius: 12px;
    color: var(--text);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: buttonGlow 2s ease-in-out infinite;
}

@keyframes buttonGlow {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(255, 107, 157, 0.4);
    }
    50% {
        box-shadow: 0 5px 30px rgba(78, 205, 196, 0.6);
    }
}

.btn-login::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-login:hover::before {
    width: 300px;
    height: 300px;
}

.btn-login:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, var(--color-2), var(--color-3));
    box-shadow: 0 10px 40px rgba(78, 205, 196, 0.5);
}

.btn-alt-version {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--color-4), var(--color-5));
    border: none;
    border-radius: 12px;
    color: var(--text);
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.75rem;
    animation: altButtonGlow 2s ease-in-out infinite;
}

@keyframes altButtonGlow {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(167, 139, 250, 0.4);
    }
    50% {
        box-shadow: 0 5px 30px rgba(251, 113, 133, 0.6);
    }
}

.btn-alt-version::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-alt-version:hover::before {
    width: 300px;
    height: 300px;
}

.btn-alt-version:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, var(--color-5), var(--color-6));
    box-shadow: 0 10px 40px rgba(251, 113, 133, 0.5);
}

/* ===== CONTENT SECTION ===== */
.content-section {
    padding: 4rem 0;
}

.content-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, var(--color-1), var(--color-2), var(--color-3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

/* ===== SUNUCU SAHİBİ BÖLÜMÜ ===== */
.server-owner-section {
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 3rem 2rem;
    margin: 3rem auto 4rem;
    max-width: 900px;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.server-owner-section::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 25px;
    background: linear-gradient(90deg, var(--color-1), var(--color-2), var(--color-3), var(--color-4), var(--color-5), var(--color-1));
    background-size: 400% 400%;
    animation: borderRotate360 4s linear infinite, gradientMove 8s ease infinite;
    z-index: -1;
    opacity: 0.8;
}

.server-owner-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 22px;
    background: rgba(15, 23, 42, 0.95);
    z-index: -1;
}

@keyframes borderRotate360 {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(390deg);
    }
}

@keyframes gradientMove {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.server-owner-section:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(255, 107, 157, 0.4);
}

.server-owner-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.server-owner-header:hover {
    transform: scale(1.05);
}

.server-owner-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--color-1), var(--color-2), var(--color-3));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.4);
    animation: rotate390 8s linear infinite;
    position: relative;
    transition: all 0.3s ease;
}

.server-owner-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--color-1), var(--color-2), var(--color-3), var(--color-4));
    z-index: -1;
    animation: rotate390 3s linear infinite reverse;
}

.server-owner-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--color-1);
    border-right-color: var(--color-2);
    transform: translate(-50%, -50%);
    animation: rotate390 2s linear infinite;
}

@keyframes rotate390 {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(390deg);
    }
}

.server-owner-header:hover .server-owner-icon {
    animation-duration: 2s;
    box-shadow: 0 15px 50px rgba(255, 107, 157, 0.6);
    transform: scale(1.1);
}

.server-owner-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--color-1), var(--color-2), var(--color-3), var(--color-4));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    animation: titleGlow 3s ease-in-out infinite;
    position: relative;
}

@keyframes titleGlow {
    0%, 100% {
        filter: brightness(1) hue-rotate(0deg);
    }
    50% {
        filter: brightness(1.3) hue-rotate(30deg);
    }
}

.server-owner-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.server-owner-info-card {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 1.5rem;
    border: 2px solid rgba(255, 107, 157, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.server-owner-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 157, 0.1), transparent);
    transition: left 0.5s ease;
}

.server-owner-info-card:hover::before {
    left: 100%;
}

.server-owner-info-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-1);
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.3);
}

.server-owner-info-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--color-1), var(--color-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.server-owner-info-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, var(--color-1), var(--color-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.server-owner-info-text {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

.server-owner-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 107, 157, 0.2);
}

.server-owner-stat {
    text-align: center;
}

.server-owner-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--color-1), var(--color-2), var(--color-3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.5rem;
}

.server-owner-stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .server-owner-section {
        padding: 2rem 1.5rem;
        margin: 2rem auto 3rem;
    }
    
    .server-owner-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .server-owner-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .server-owner-title {
        font-size: 1.8rem;
    }
    
    .server-owner-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .server-owner-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

/* ===== CITIES SECTION ===== */
.cities-section {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.cities-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(90deg, var(--color-1), var(--color-2), var(--color-3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cities-title i {
    margin-right: 0.5rem;
    background: linear-gradient(90deg, var(--color-1), var(--color-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.city-card {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    text-decoration: none;
    color: var(--text);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 107, 157, 0.2);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    cursor: pointer;
}

.city-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.city-card:hover::before {
    left: 100%;
}

.city-card i {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, var(--color-1), var(--color-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.city-card span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    transition: all 0.3s ease;
}

.city-card:nth-child(1) {
    animation: cityCardFloat 3s ease-in-out infinite;
}

.city-card:nth-child(2) {
    animation: cityCardFloat 3s ease-in-out infinite 0.2s;
}

.city-card:nth-child(3) {
    animation: cityCardFloat 3s ease-in-out infinite 0.4s;
}

.city-card:nth-child(4) {
    animation: cityCardFloat 3s ease-in-out infinite 0.6s;
}

.city-card:nth-child(5) {
    animation: cityCardFloat 3s ease-in-out infinite 0.8s;
}

.city-card:nth-child(6) {
    animation: cityCardFloat 3s ease-in-out infinite 1s;
}

.city-card:nth-child(7) {
    animation: cityCardFloat 3s ease-in-out infinite 1.2s;
}

.city-card:nth-child(8) {
    animation: cityCardFloat 3s ease-in-out infinite 1.4s;
}

.city-card:nth-child(9) {
    animation: cityCardFloat 3s ease-in-out infinite 1.6s;
}

.city-card:nth-child(10) {
    animation: cityCardFloat 3s ease-in-out infinite 1.8s;
}

.city-card:nth-child(11) {
    animation: cityCardFloat 3s ease-in-out infinite 2s;
}

.city-card:nth-child(12) {
    animation: cityCardFloat 3s ease-in-out infinite 2.2s;
}

@keyframes cityCardFloat {
    0%, 100% {
        transform: translateY(0);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }
    50% {
        transform: translateY(-10px);
        box-shadow: 0 10px 25px rgba(255, 107, 157, 0.3);
    }
}

.city-card:hover {
    transform: translateY(-15px) scale(1.05);
    border-color: var(--color-1);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.4);
}

.city-card:hover i {
    transform: scale(1.3) rotate(10deg);
}

.city-card:hover span {
    background: linear-gradient(90deg, var(--color-1), var(--color-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cities-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    padding: 2rem 0;
}

.info-card {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 107, 157, 0.2);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-1), var(--color-2), var(--color-3));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.info-card:hover::before {
    transform: scaleX(1);
}

.info-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--color-1), var(--color-2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.4);
    transition: all 0.3s ease;
    animation: infoIconFloat 3s ease-in-out infinite;
}

.info-card:nth-child(2) .info-icon {
    animation-delay: 0.3s;
    background: linear-gradient(135deg, var(--color-2), var(--color-3));
}

.info-card:nth-child(3) .info-icon {
    animation-delay: 0.6s;
    background: linear-gradient(135deg, var(--color-3), var(--color-1));
}

@keyframes infoIconFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.1);
    }
}

.info-card:hover .info-icon {
    transform: translateY(-15px) scale(1.15) rotate(5deg);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.6);
}

.info-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, var(--color-1), var(--color-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.info-card:hover .info-title {
    filter: hue-rotate(20deg);
}

.info-text {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.info-card:hover .info-text {
    color: var(--text);
}

/* ===== FOOTER ===== */
.footer {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--color-1), var(--color-2), var(--color-3)) 1;
}

.footer-content {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-credits {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-credits p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.footer-dev-name {
    background: linear-gradient(90deg, var(--color-1), var(--color-2), var(--color-3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.1rem;
    animation: devNameGlow 2s ease-in-out infinite;
}

@keyframes devNameGlow {
    0%, 100% {
        filter: hue-rotate(0deg);
    }
    50% {
        filter: hue-rotate(90deg);
    }
}

/* ===== FOOTER BOTTOM ===== */
.footer-bottom {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.98));
    backdrop-filter: blur(10px);
    padding: 1.5rem 0;
    border-top: 2px solid transparent;
    border-image: linear-gradient(90deg, var(--color-1), var(--color-2), var(--color-3), var(--color-4), var(--color-5)) 1;
    position: relative;
    overflow: hidden;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(255, 107, 157, 0.1) 0%, 
        rgba(78, 205, 196, 0.1) 25%, 
        rgba(255, 230, 109, 0.1) 50%, 
        rgba(167, 139, 250, 0.1) 75%, 
        rgba(255, 107, 157, 0.1) 100%);
    animation: footerGradient 5s ease-in-out infinite;
    z-index: -1;
}

@keyframes footerGradient {
    0%, 100% {
        transform: translateX(-50%);
    }
    50% {
        transform: translateX(50%);
    }
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-bottom-left,
.footer-bottom-right {
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.footer-bottom-left {
    background: linear-gradient(90deg, var(--color-1), var(--color-2), var(--color-3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGlow 3s ease-in-out infinite;
}

.footer-bottom-right {
    background: linear-gradient(90deg, var(--color-4), var(--color-5), var(--color-6));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGlow 3s ease-in-out infinite 1.5s;
}

@keyframes textGlow {
    0%, 100% {
        filter: brightness(1) saturate(1);
    }
    50% {
        filter: brightness(1.3) saturate(1.2);
    }
}

.footer-bottom-left i,
.footer-bottom-right i {
    font-size: 1.1rem;
    background: linear-gradient(90deg, var(--color-1), var(--color-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: iconPulse 2s ease-in-out infinite;
}

.footer-bottom-right i {
    background: linear-gradient(90deg, var(--color-4), var(--color-5));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transition: left 0.3s ease;
        box-shadow: 2px 0 20px rgba(0, 0, 0, 0.3);
    }
    
    .nav.active {
        left: 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .couple-chat-box {
        margin-top: 2rem;
    }
    
    .chat-messages {
        max-height: 250px;
    }
    
    /* Chat Login Section - Mobile Optimizations */
    .container {
        padding: 0 1rem;
    }
    
    .chat-login-section {
        padding: 2rem 0;
    }
    
    .chat-login-section .container {
        padding: 0 1rem;
    }
    
    .hero-content-with-login {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .chat-login-box {
        padding: 1.5rem;
        border-radius: 20px;
        max-width: 100%;
        margin: 0;
    }
    
    .chat-login-box::after {
        border-radius: 20px;
    }
    
    .box-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .box-title {
        font-size: 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1.2rem;
    }
    
    .form-group input {
        padding: 0.85rem 0.85rem 0.85rem 2.5rem;
        font-size: 0.95rem;
        border-radius: 10px;
    }
    
    .input-icon {
        left: 0.85rem;
        font-size: 1rem;
    }
    
    .btn-login {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
        border-radius: 10px;
    }
    
    .btn-alt-version {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
        border-radius: 10px;
        margin-top: 0.6rem;
    }
    
    .age-warning {
        font-size: 0.8rem;
        margin-top: 0.8rem;
    }
    
    .hero-badge {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 0.8rem;
        margin-top: 1.5rem;
    }
    
    .hero-feature-item {
        font-size: 0.9rem;
    }
    
    .hero-feature-item i {
        font-size: 1rem;
        margin-right: 0.5rem;
    }
    
    /* Cities Section - Mobile */
    .cities-section {
        padding: 3rem 0;
    }
    
    .cities-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .cities-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 1rem;
    }
    
    .city-card {
        padding: 1rem;
        min-height: 100px;
    }
    
    .city-card i {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .city-card span {
        font-size: 0.9rem;
    }
    
    /* Cities Info - Mobile */
    .cities-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2.5rem;
        padding: 1.5rem 0;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    .info-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .info-title {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .info-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .chat-login-section {
        padding: 1.5rem 0;
    }
    
    .chat-login-section .container {
        padding: 0 0.75rem;
    }
    
    .chat-login-box {
        padding: 1.25rem;
        border-radius: 15px;
    }
    
    .chat-login-box::after {
        border-radius: 15px;
    }
    
    .box-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }
    
    .box-title {
        font-size: 1.3rem;
    }
    
    .form-group input {
        padding: 0.75rem 0.75rem 0.75rem 2.25rem;
        font-size: 0.9rem;
    }
    
    .input-icon {
        left: 0.75rem;
        font-size: 0.95rem;
    }
    
    .btn-login {
        padding: 0.85rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .btn-alt-version {
        padding: 0.85rem 1.25rem;
        font-size: 0.95rem;
        margin-top: 0.5rem;
    }
    
    .age-warning {
        font-size: 0.75rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-feature-item {
        font-size: 0.85rem;
    }
    
    /* Cities Section - Small Mobile */
    .cities-section {
        padding: 2rem 0;
    }
    
    .cities-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .city-card {
        padding: 0.75rem;
        min-height: 80px;
        border-radius: 12px;
    }
    
    .city-card i {
        font-size: 1.5rem;
        margin-bottom: 0.4rem;
    }
    
    .city-card span {
        font-size: 0.85rem;
    }
    
    /* Cities Info - Small Mobile */
    .cities-info {
        gap: 1.2rem;
        margin-top: 2rem;
        padding: 1rem 0;
    }
    
    .info-card {
        padding: 1.2rem;
        border-radius: 15px;
    }
    
    .info-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }
    
    .info-title {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }
    
    .info-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    /* Footer Bottom - Mobile */
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-bottom-left,
    .footer-bottom-right {
        font-size: 0.9rem;
    }
}

