/* Reset ve Genel Stiller */
:root {
    --primary-gold: #FFD700;
    --dark-gold: #B8860B;
    --black: #000000;
    --dark-gray: #1a1a1a;
    --primary-font: 'Roboto', sans-serif;
    --title-size: 32px;
    --text-size: 16px;
    --animation-speed: 0.3s;
    --border-radius: 10px;
    --gradient-gold: linear-gradient(135deg, var(--primary-gold), #FFA500, #FF8C00);
    --gradient-black: linear-gradient(135deg, var(--black), var(--dark-gray), #2a2a2a);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--primary-font);
    font-size: var(--text-size);
    background: 
        radial-gradient(ellipse at top left, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at top right, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(255, 215, 0, 0.12) 0%, transparent 50%),
        linear-gradient(135deg, var(--black) 0%, #0d0d0d 25%, var(--dark-gray) 50%, #0d0d0d 75%, var(--black) 100%);
    background-attachment: fixed;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Premium Background Effects */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 215, 0, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 215, 0, 0.2), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 215, 0, 0.4), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255, 215, 0, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(255, 215, 0, 0.2), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 8s linear infinite;
    pointer-events: none;
    z-index: 1;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 40%, rgba(255, 215, 0, 0.03) 50%, transparent 60%),
        linear-gradient(-45deg, transparent 40%, rgba(255, 215, 0, 0.03) 50%, transparent 60%);
    background-size: 60px 60px;
    animation: shimmer 15s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes sparkle {
    0% { transform: translateY(0px) translateX(0px); }
    25% { transform: translateY(-10px) translateX(5px); }
    50% { transform: translateY(-20px) translateX(-5px); }
    75% { transform: translateY(-10px) translateX(5px); }
    100% { transform: translateY(0px) translateX(0px); }
}

@keyframes shimmer {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.05); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Renkler */
:root {
    --primary-gold: #FFD700;
    --dark-gold: #B8860B;
    --light-gold: #FFF8DC;
    --black: #000000;
    --dark-gray: #1a1a1a;
    --medium-gray: #2a2a2a;
    --light-gray: #3a3a3a;
    --white: #ffffff;
    --gradient-gold: linear-gradient(135deg, #FFD700, #FFA500, #FF8C00);
    --gradient-black: linear-gradient(135deg, #000000, #1a1a1a, #2a2a2a);
}

/* Header */
.header {
    background: var(--gradient-black);
    padding: 1.5rem 0;
    border-bottom: 2px solid var(--primary-gold);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 1rem;
    cursor: pointer;
}

.header .logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, 
        rgba(255, 215, 0, 0.1) 0%, 
        rgba(255, 215, 0, 0.05) 50%, 
        transparent 100%);
    border-radius: 50%;
    animation: logoGlow 3s ease-in-out infinite;
    pointer-events: none;
}

.header .logo::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 280px;
    height: 280px;
    transform: translate(-50%, -50%);
    background: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 215, 0, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 215, 0, 0.2), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 215, 0, 0.4), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255, 215, 0, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(255, 215, 0, 0.2), transparent),
        radial-gradient(1px 1px at 200px 50px, rgba(255, 215, 0, 0.3), transparent);
    background-repeat: repeat;
    background-size: 120px 120px;
    border-radius: 50%;
    animation: logoParticles 12s linear infinite;
    pointer-events: none;
    opacity: 0.3;
}

@keyframes logoGlow {
    0%, 100% { 
        transform: scale(1); 
        opacity: 0.6; 
    }
    50% { 
        transform: scale(1.2); 
        opacity: 1; 
    }
}

@keyframes logoParticles {
    0% { 
        transform: translate(-50%, -50%) rotate(0deg) scale(1); 
        opacity: 0.4; 
    }
    25% { 
        transform: translate(-50%, -50%) rotate(90deg) scale(1.1); 
        opacity: 0.7; 
    }
    50% { 
        transform: translate(-50%, -50%) rotate(180deg) scale(1); 
        opacity: 0.8; 
    }
    75% { 
        transform: translate(-50%, -50%) rotate(270deg) scale(1.1); 
        opacity: 0.6; 
    }
    100% { 
        transform: translate(-50%, -50%) rotate(360deg) scale(1); 
        opacity: 0.4; 
    }
}

.header .logo:hover::after {
    animation-duration: 8s;
    opacity: 0.5;
    background-size: 140px 140px;
}

.header .logo:hover::before {
    animation-duration: 2s;
    transform: scale(1.3);
}

.header .logo .site-logo-img {
    width: 200px;
    height: 80px;
    object-fit: contain;
    border-radius: 12px;
    border: 3px solid transparent;
    padding: 10px;
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.15) 0%, 
        rgba(255, 215, 0, 0.08) 50%, 
        rgba(255, 215, 0, 0.15) 100%);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 4px 15px rgba(255, 215, 0, 0.3));
    animation: logoFloat 4s ease-in-out infinite;
}

.header .logo .site-logo-img::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, 
        var(--primary-gold) 0%, 
        rgba(255, 235, 92, 0.8) 25%, 
        transparent 50%, 
        rgba(255, 235, 92, 0.8) 75%, 
        var(--primary-gold) 100%);
    border-radius: 15px;
    z-index: -1;
    animation: logoBorderRotate 3s linear infinite;
}

@keyframes logoFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    25% { 
        transform: translateY(-3px) rotate(0.5deg); 
    }
    50% { 
        transform: translateY(0px) rotate(0deg); 
    }
    75% { 
        transform: translateY(-2px) rotate(-0.5deg); 
    }
}

@keyframes logoBorderRotate {
    0% { 
        transform: rotate(0deg) scale(1); 
        opacity: 0.7; 
    }
    50% { 
        transform: rotate(180deg) scale(1.02); 
        opacity: 1; 
    }
    100% { 
        transform: rotate(360deg) scale(1); 
        opacity: 0.7; 
    }
}

.header .logo .site-logo-img:hover {
    transform: scale(1.1) rotate(2deg);
    filter: 
        drop-shadow(0 8px 25px rgba(255, 215, 0, 0.5))
        brightness(1.1) 
        contrast(1.1);
    border-color: var(--primary-gold);
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.25) 0%, 
        rgba(255, 215, 0, 0.15) 50%, 
        rgba(255, 215, 0, 0.25) 100%);
}

.header .logo:active {
    transform: scale(0.98);
}

/* Logo Ripple Effect */
.logo-ripple {
    position: absolute;
    background: radial-gradient(circle, 
        rgba(255, 215, 0, 0.4) 0%, 
        rgba(255, 215, 0, 0.2) 50%, 
        transparent 100%);
    border-radius: 50%;
    transform: scale(0);
    animation: logoRippleAnim 0.6s ease-out;
    pointer-events: none;
    z-index: 1;
}

@keyframes logoRippleAnim {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes logoShake {
    0%, 100% { transform: translateX(0) rotate(0deg); }
    10% { transform: translateX(-5px) rotate(-1deg); }
    20% { transform: translateX(5px) rotate(1deg); }
    30% { transform: translateX(-3px) rotate(-0.5deg); }
    40% { transform: translateX(3px) rotate(0.5deg); }
    50% { transform: translateX(-2px) rotate(-0.3deg); }
    60% { transform: translateX(2px) rotate(0.3deg); }
    70% { transform: translateX(-1px) rotate(-0.1deg); }
    80% { transform: translateX(1px) rotate(0.1deg); }
    90% { transform: translateX(0) rotate(0deg); }
}

/* Logo Pulse Animation on Scroll */
.header.scrolled .logo .site-logo-img {
    animation: logoFloat 4s ease-in-out infinite, logoPulse 2s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    }
    50% { 
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
    }
}

/* Header Sparkle Animation */
@keyframes headerSparkle {
    0% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateY(-30px) scale(1.2);
        opacity: 0.8;
    }
    100% {
        transform: translateY(-60px) scale(0.5);
        opacity: 0;
    }
}

/* Header Pulse Animation */
@keyframes headerPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

.logo h1 {
    color: var(--primary-gold);
    font-size: 2rem;
    font-weight: 900;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.logo span {
    color: var(--light-gray);
    font-size: 0.9rem;
    display: block;
    margin-top: -5px;
}

.nav {
    display: none;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-gold);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--gradient-black);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 60% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 30% 70%, rgba(255, 215, 0, 0.12) 0%, transparent 45%),
        conic-gradient(from 0deg at 50% 50%, 
            rgba(255, 215, 0, 0.1) 0deg, 
            transparent 60deg, 
            rgba(255, 215, 0, 0.05) 120deg, 
            transparent 180deg, 
            rgba(255, 215, 0, 0.08) 240deg, 
            transparent 300deg, 
            rgba(255, 215, 0, 0.1) 360deg);
    animation: float 8s ease-in-out infinite, rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #FFD700 0%, #FFE55C 25%, #FFEB3B 50%, #FFE55C 75%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(255, 215, 0, 0.5),
        0 0 40px rgba(255, 215, 0, 0.3);
    animation: heroTitleGlow 3s ease-in-out infinite alternate;
    position: relative;
    display: inline-block;
    letter-spacing: 2px;
}

.hero-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #FFD700 0%, #FFE55C 25%, #FFEB3B 50%, #FFE55C 75%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(2px);
    z-index: -1;
    opacity: 0.7;
}

@keyframes heroTitleGlow {
    from { 
        filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.4));
        text-shadow: 
            0 2px 4px rgba(0, 0, 0, 0.8),
            0 0 20px rgba(255, 215, 0, 0.5),
            0 0 40px rgba(255, 215, 0, 0.3);
    }
    to { 
        filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.8));
        text-shadow: 
            0 2px 4px rgba(0, 0, 0, 0.9),
            0 0 30px rgba(255, 215, 0, 0.7),
            0 0 50px rgba(255, 215, 0, 0.5),
            0 0 70px rgba(255, 215, 0, 0.3);
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
    font-weight: 500;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.9) 0%, 
        rgba(59, 130, 246, 0.8) 50%, 
        rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.7),
        0 0 15px rgba(59, 130, 246, 0.4);
    letter-spacing: 1px;
    line-height: 1.4;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.stat {
    text-align: center;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 25%, #2a2a2a 50%, #1a1a1a 75%, #000000 100%);
    border: 2px solid var(--primary-gold);
    border-radius: 15px;
    padding: 1.5rem 1rem;
    box-shadow: 
        0 8px 20px rgba(255, 215, 0, 0.3),
        inset 0 1px 3px rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 120px;
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 215, 0, 0.3), 
        transparent);
    transition: left 0.6s ease;
}

.stat:hover::before {
    left: 100%;
}

.stat:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 12px 30px rgba(255, 215, 0, 0.4),
        0 0 20px rgba(255, 215, 0, 0.6),
        inset 0 1px 3px rgba(255, 215, 0, 0.3);
    border-color: #FFE55C;
}

.stat:active {
    transform: translateY(2px) scale(1.02);
    box-shadow: 
        0 4px 12px rgba(255, 215, 0, 0.3),
        inset 0 3px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.05s ease;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #FFD700;
    margin-bottom: 0.5rem;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.5),
        0 0 10px rgba(255, 215, 0, 0.3);
    position: relative;
    z-index: 2;
}

.stat-label {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-gold);
    color: var(--black);
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
    filter: brightness(1.1);
}

.cta-button:active {
    transform: translateY(2px) scale(0.95);
    box-shadow: 
        0 5px 15px rgba(255, 215, 0, 0.4),
        inset 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.1s ease;
    filter: brightness(0.9);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    padding: 2rem 0;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--primary-gold), 
        transparent);
    transition: width 0.6s ease;
}

.section-header:hover::after {
    width: 200px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    transition: all 0.4s ease;
    cursor: pointer;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.section-header h2::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 215, 0, 0.2), 
        transparent);
    transition: left 0.6s ease;
}

.section-header h2:hover {
    transform: scale(1.1);
    text-shadow: 
        0 0 30px rgba(255, 215, 0, 0.6),
        0 0 50px rgba(255, 215, 0, 0.4),
        0 5px 15px rgba(255, 215, 0, 0.3);
    color: #FFE55C;
    filter: brightness(1.2);
}

.section-header h2:hover::before {
    left: 100%;
}

.section-header h2:active {
    transform: scale(1.05);
    transition: all 0.1s ease;
}

.section-header p {
    font-size: 1.2rem;
    color: #cccccc;
    font-weight: 300;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Sites Section */
.sites-section {
    padding: 6rem 0 3rem 0;
    background: 
        linear-gradient(135deg, #000000 0%, #1a1a1a 25%, #2a2a2a 50%, #1a1a1a 75%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.sites-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 40%, rgba(255, 215, 0, 0.02) 50%, transparent 60%);
    background-size: 100px 100px;
    animation: slideBackground 10s linear infinite;
    pointer-events: none;
}

@keyframes slideBackground {
    0% { transform: translateX(-100px) translateY(-100px); }
    100% { transform: translateX(100px) translateY(100px); }
}

.featured-site {
    margin-bottom: 4rem;
}

.site-card {
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.95) 0%, 
        rgba(255, 193, 7, 0.9) 25%, 
        rgba(255, 152, 0, 0.85) 50%,
        rgba(255, 193, 7, 0.9) 75%, 
        rgba(255, 215, 0, 0.95) 100%);
    border-radius: 20px;
    padding: 2rem 1.8rem;
    position: relative;
    border: 3px solid var(--primary-gold);
    transition: all 0.4s ease;
    overflow: hidden;
    height: auto;
    display: block;
    box-shadow: 
        0 12px 30px rgba(255, 215, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.site-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        var(--primary-gold) 0%, 
        rgba(255, 215, 0, 0.8) 25%, 
        transparent 50%, 
        rgba(255, 215, 0, 0.8) 75%, 
        var(--primary-gold) 100%);
    border-radius: 28px;
    z-index: -1;
    animation: borderShine 3s ease-in-out infinite;
}

.site-card::after {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    right: 10%;
    bottom: 10%;
    background: radial-gradient(circle at 30% 30%, 
        rgba(255, 255, 255, 0.15) 0%, 
        transparent 50%);
    border-radius: 20px;
    pointer-events: none;
}

.site-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(255, 215, 0, 0.4),
        0 0 30px rgba(255, 215, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: #FFE55C;
}

.site-card.premium {
    border: 4px solid #FFE55C;
    background: linear-gradient(135deg, 
        rgba(255, 235, 59, 0.98) 0%, 
        rgba(255, 215, 0, 0.95) 25%, 
        rgba(255, 193, 7, 0.9) 50%,
        rgba(255, 215, 0, 0.95) 75%, 
        rgba(255, 235, 59, 0.98) 100%);
    box-shadow: 
        0 20px 50px rgba(255, 215, 0, 0.5),
        0 0 40px rgba(255, 235, 59, 0.7),
        inset 0 2px 5px rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.site-card.premium::before {
    background: linear-gradient(45deg, 
        #FFE55C 0%, 
        rgba(255, 235, 59, 0.9) 25%, 
        transparent 50%, 
        rgba(255, 235, 59, 0.9) 75%, 
        #FFE55C 100%);
    animation: premiumBorderShine 2s ease-in-out infinite;
}

@keyframes premiumBorderShine {
    0%, 100% { opacity: 0.9; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.02); }
}

.site-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #FF6B35, #FF8C42, #FFB347);
    color: #000000;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-weight: 900;
    font-size: 0.9rem;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid #FF6B35;
    box-shadow: 
        0 5px 15px rgba(255, 107, 53, 0.4),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.site-content {
    position: relative;
    z-index: 5;
    display: block;
}

.site-info {
    margin-bottom: 1.5rem;
}

.site-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.2rem;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    padding: 0.7rem 0.9rem;
    border: 2px solid var(--primary-gold);
    box-shadow: 
        0 5px 14px rgba(0, 0, 0, 0.4),
        inset 0 1px 3px rgba(255, 215, 0, 0.2);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    min-height: 55px;
    max-width: 150px;
}

.site-logo i {
    font-size: 3rem;
    color: var(--primary-gold);
    margin: 0 auto;
    display: block;
    text-align: center;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.site-logo-img {
    width: 130px;
    height: 44px;
    object-fit: contain;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2px;
    background: transparent;
    transition: all 0.3s ease;
    margin: 0;
    display: block;
    filter: brightness(1.2) contrast(1.1);
}

/* Video logo için özel stil */
.site-logo video.site-logo-img {
    width: 130px;
    height: 44px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2px;
    background: transparent;
    transition: all 0.3s ease;
    margin: 0;
    display: block;
    filter: brightness(1.2) contrast(1.1);
}

.site-logo-img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.site-logo h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
}

.site-features {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    justify-content: center;
}

.feature {
    background: rgba(0, 0, 0, 0.7);
    color: var(--primary-gold);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(255, 215, 0, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.site-bonus {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1.2rem;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 15px;
    border: 2px solid rgba(255, 215, 0, 0.4);
    box-shadow: 
        0 6px 16px rgba(0, 0, 0, 0.4),
        inset 0 1px 3px rgba(255, 215, 0, 0.2);
}

.bonus-amount {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--primary-gold);
    margin-bottom: 0.4rem;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.5),
        0 0 10px rgba(255, 215, 0, 0.3);
    letter-spacing: 1px;
}

.bonus-text {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    font-size: 1.1rem;
}

.bonus-fs {
    color: var(--primary-gold);
    font-size: 1rem;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.site-button {
    background: linear-gradient(135deg, #000000, #1a1a1a, #2a2a2a);
    color: var(--primary-gold);
    text-decoration: none;
    padding: 1.2rem 3rem;
    border-radius: 30px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s ease;
    display: block;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    border: 2px solid var(--primary-gold);
    box-shadow: 
        0 8px 20px rgba(255, 215, 0, 0.3),
        inset 0 1px 3px rgba(255, 215, 0, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.site-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 215, 0, 0.3), 
        transparent);
    transition: left 0.6s ease;
}

.site-button:hover::before {
    left: 100%;
}

.site-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 15px 30px rgba(255, 215, 0, 0.5),
        0 0 20px rgba(255, 215, 0, 0.4),
        inset 0 1px 3px rgba(255, 215, 0, 0.3);
    border-color: #FFE55C;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a, #3a3a3a);
}

.site-button:active {
    transform: translateY(3px) scale(0.97);
    box-shadow: 
        0 2px 6px rgba(255, 215, 0, 0.3),
        inset 0 4px 12px rgba(0, 0, 0, 0.6),
        inset 0 1px 3px rgba(255, 215, 0, 0.2);
    transition: all 0.05s ease;
    filter: brightness(0.85);
}

.premium-btn {
    font-size: 1.2rem;
    padding: 1.5rem 3rem;
    background: linear-gradient(135deg, #000000, #1a1a1a, #2a2a2a);
    border: 2px solid #FFD700;
    color: #FFD700;
    box-shadow: 
        0 10px 25px rgba(255, 215, 0, 0.4),
        inset 0 1px 3px rgba(255, 215, 0, 0.3);
}

.premium-btn:hover {
    box-shadow: 
        0 20px 40px rgba(255, 215, 0, 0.6),
        0 0 30px rgba(255, 215, 0, 0.5),
        inset 0 1px 3px rgba(255, 215, 0, 0.4);
    border-color: #FFE55C;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a, #3a3a3a);
    color: #FFE55C;
}

.premium-btn:active {
    transform: translateY(3px) scale(0.96);
    box-shadow: 
        0 3px 10px rgba(255, 215, 0, 0.4),
        inset 0 4px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 3px rgba(255, 255, 255, 0.3);
    transition: all 0.05s ease;
    filter: brightness(0.8);
}

.sites-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
    margin-bottom: 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    justify-items: center;
}

/* Bonuses Section */
.bonuses-section {
    padding: 8rem 0;
    background: 
        linear-gradient(135deg, #000000 0%, #1a1a1a 25%, #2a2a2a 50%, #1a1a1a 75%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.bonuses-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle, rgba(255, 215, 0, 0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    animation: pulseGrid 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulseGrid {
    0%, 100% { opacity: 0.4; transform: scale(1) rotate(0deg); }
    50% { opacity: 0.7; transform: scale(1.05) rotate(1deg); }
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    padding: 2rem 0;
}

.bonus-card {
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.95) 0%, 
        rgba(255, 193, 7, 0.9) 25%, 
        rgba(255, 152, 0, 0.85) 50%,
        rgba(255, 193, 7, 0.9) 75%, 
        rgba(255, 215, 0, 0.95) 100%);
    border-radius: 25px;
    padding: 3.5rem 2.5rem;
    text-align: center;
    border: 3px solid var(--primary-gold);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 15px 35px rgba(255, 215, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        var(--primary-gold) 0%, 
        rgba(255, 215, 0, 0.8) 25%, 
        transparent 50%, 
        rgba(255, 215, 0, 0.8) 75%, 
        var(--primary-gold) 100%);
    border-radius: 28px;
    z-index: -1;
    animation: borderShine 3s ease-in-out infinite;
}

.bonus-card::after {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    right: 10%;
    bottom: 10%;
    background: radial-gradient(circle at 30% 30%, 
        rgba(255, 255, 255, 0.15) 0%, 
        transparent 50%);
    border-radius: 20px;
    pointer-events: none;
}

@keyframes borderShine {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.02); }
}

.bonus-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(255, 215, 0, 0.4),
        0 0 30px rgba(255, 215, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: #FFE55C;
}

.bonus-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #000000, #1a1a1a, #000000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2.5rem;
    position: relative;
    z-index: 2;
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.4),
        inset 0 2px 5px rgba(255, 215, 0, 0.3);
    border: 2px solid var(--primary-gold);
}

.bonus-icon i {
    font-size: 2.5rem;
    color: var(--primary-gold);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.bonus-card h3 {
    font-size: 1.8rem;
    font-weight: 900;
    color: #000000;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
    letter-spacing: 0.5px;
}

.bonus-card p {
    color: #1a1a1a;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
    font-weight: 500;
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.2);
}

.bonus-value {
    font-size: 2.2rem;
    font-weight: 900;
    color: #000000;
    position: relative;
    z-index: 2;
    text-shadow: 
        0 2px 4px rgba(255, 255, 255, 0.4),
        0 0 10px rgba(255, 215, 0, 0.3);
    letter-spacing: 1px;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    display: inline-block;
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #000000, #1a1a1a, #2a2a2a);
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.feature {
    text-align: center;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.feature-icon:hover {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--black);
}

.feature h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

.feature p {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Social Section */
.social-section {
    padding: 6rem 0;
    background: var(--black);
    text-align: center;
}

.social-content h2 {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.social-content p {
    color: #cccccc;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid var(--medium-gray);
    transition: all 0.3s ease;
    min-width: 120px;
}

.social-link:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.social-link i {
    font-size: 2rem;
    color: var(--primary-gold);
}

.social-link span {
    font-weight: 500;
}

/* Footer */
.footer {
    background: var(--gradient-black);
    padding: 4rem 0 2rem;
    border-top: 2px solid var(--primary-gold);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.footer-section p,
.footer-section a {
    color: #cccccc;
    text-decoration: none;
    margin-bottom: 0.5rem;
    display: block;
    transition: color 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.footer-section a:hover {
    color: var(--primary-gold);
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

.footer-section i {
    color: var(--primary-gold);
    margin-right: 0.5rem;
}

.footer-bottom {
    border-top: 2px solid var(--primary-gold);
    padding: 2rem 0;
    text-align: center;
    color: #cccccc;
    background: var(--gradient-black);
    box-shadow: 0 -5px 20px rgba(255, 215, 0, 0.1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .sites-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        max-width: 800px;
    }
    
    .site-card {
        padding: 1.8rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .site-content {
        display: block;
    }
    
    .nav {
        display: none;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .sites-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .bonuses-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .bonus-card {
        padding: 3rem 2rem;
        margin: 0 1rem;
    }
    
    .bonus-card h3 {
        font-size: 1.6rem;
    }
    
    .bonus-value {
        font-size: 2rem;
    }
    
    .social-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .site-card {
        padding: 2rem 1.5rem;
        margin: 0 0.5rem;
    }
    
    .site-card.premium {
        transform: scale(1);
        margin: 0 0.5rem 2rem;
    }
    
    .site-logo-img {
        width: 130px;
        height: 44px;
    }
    
    .site-logo {
        padding: 0.8rem 1rem;
        min-height: 60px;
        max-width: 160px;
    }
    
    .bonus-amount {
        font-size: 2.2rem;
    }
    
    .site-button {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
    
    .premium-btn {
        padding: 1.2rem 2rem;
        font-size: 1rem;
    }
    
    .bonus-card {
        padding: 2.5rem 1.5rem;
        margin: 0 0.5rem;
    }
    
    .bonus-icon {
        width: 80px;
        height: 80px;
    }
    
    .bonus-icon i {
        font-size: 2rem;
    }
    
    .bonus-card h3 {
        font-size: 1.5rem;
    }
    
    .bonus-value {
        font-size: 1.8rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.site-card,
.bonus-card,
.feature {
    animation: fadeInUp 0.6s ease forwards;
}

/* Glowing Effects */
.site-card.premium,
.cta-button,
.site-button {
    position: relative;
    overflow: hidden;
}

.site-card.premium::after,
.cta-button::after,
.site-button::after {
    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 ease;
}

.site-card.premium:hover::after,
.cta-button:hover::after,
.site-button:hover::after {
    left: 100%;
}

/* =================================
   FLOATING CASINO ANIMATIONS
================================= */

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

/* Floating Chips */
.floating-chip {
    position: absolute;
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-gold);
    text-shadow: 
        0 0 10px rgba(255, 215, 0, 0.8),
        0 0 20px rgba(255, 215, 0, 0.6),
        0 0 30px rgba(255, 215, 0, 0.4);
    animation: floatAndRotate 8s infinite linear;
    opacity: 0.8;
}

.chip-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.chip-2 {
    top: 60%;
    left: 15%;
    animation-delay: -2s;
    animation-duration: 10s;
}

.chip-3 {
    top: 40%;
    left: 80%;
    animation-delay: -4s;
    animation-duration: 14s;
}

.chip-4 {
    top: 70%;
    left: 75%;
    animation-delay: -6s;
    animation-duration: 11s;
}

.chip-5 {
    top: 30%;
    left: 85%;
    animation-delay: -1s;
    animation-duration: 13s;
}

.chip-6 {
    top: 80%;
    left: 20%;
    animation-delay: -3s;
    animation-duration: 9s;
}

/* Floating Sparkles */
.floating-sparkle {
    position: absolute;
    font-size: 1.5rem;
    color: var(--primary-gold);
    text-shadow: 
        0 0 15px rgba(255, 215, 0, 1),
        0 0 25px rgba(255, 215, 0, 0.8);
    animation: sparkleFloat 6s infinite ease-in-out;
    opacity: 0.9;
}

.sparkle-1 {
    top: 25%;
    left: 25%;
    animation-delay: 0s;
}

.sparkle-2 {
    top: 45%;
    left: 70%;
    animation-delay: -1.5s;
}

.sparkle-3 {
    top: 65%;
    left: 60%;
    animation-delay: -3s;
}

.sparkle-4 {
    top: 35%;
    left: 90%;
    animation-delay: -4.5s;
}

.sparkle-5 {
    top: 75%;
    left: 30%;
    animation-delay: -2s;
}

/* Keyframe Animations */
@keyframes floatAndRotate {
    0% {
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.8;
    }
    25% {
        transform: translateY(-20px) rotate(90deg) scale(1.1);
        opacity: 1;
    }
    50% {
        transform: translateY(-10px) rotate(180deg) scale(0.9);
        opacity: 0.8;
    }
    75% {
        transform: translateY(-30px) rotate(270deg) scale(1.2);
        opacity: 1;
    }
    100% {
        transform: translateY(0px) rotate(360deg) scale(1);
        opacity: 0.8;
    }
}

@keyframes sparkleFloat {
    0%, 100% {
        transform: translateY(0px) scale(1) rotate(0deg);
        opacity: 0.9;
    }
    25% {
        transform: translateY(-15px) scale(1.3) rotate(90deg);
        opacity: 1;
    }
    50% {
        transform: translateY(-25px) scale(0.8) rotate(180deg);
        opacity: 0.7;
    }
    75% {
        transform: translateY(-10px) scale(1.1) rotate(270deg);
        opacity: 1;
    }
}

/* Glow Pulse Effect */
@keyframes glowPulse {
    0%, 100% {
        text-shadow: 
            0 0 10px rgba(255, 215, 0, 0.8),
            0 0 20px rgba(255, 215, 0, 0.6),
            0 0 30px rgba(255, 215, 0, 0.4);
    }
    50% {
        text-shadow: 
            0 0 20px rgba(255, 215, 0, 1),
            0 0 30px rgba(255, 215, 0, 0.8),
            0 0 40px rgba(255, 215, 0, 0.6),
            0 0 50px rgba(255, 215, 0, 0.4);
    }
}

/* Enhanced Glow for Special Elements */
.floating-chip:hover {
    animation: glowPulse 2s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
}

/* Mobile Responsive Animations */
@media (max-width: 768px) {
    .floating-chip {
        font-size: 1.5rem;
    }
    
    .floating-sparkle {
        font-size: 1rem;
    }
    
    .chip-3, .chip-5, .sparkle-2, .sparkle-4 {
        display: none;
    }
    html {
    scroll-behavior: smooth;
}

.site-logo-link {
    text-decoration: none;
}
}
