/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Okyanus Efektleri */
.ocean {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100px;
    background: linear-gradient(90deg, transparent, rgba(0, 150, 255, 0.1), transparent);
    animation: wave 15s linear infinite;
}

.wave1 {
    animation-duration: 15s;
    opacity: 0.3;
}

.wave2 {
    animation-duration: 20s;
    opacity: 0.2;
    animation-delay: -5s;
}

.wave3 {
    animation-duration: 25s;
    opacity: 0.1;
    animation-delay: -10s;
}

@keyframes wave {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0%);
    }
}

.bubbles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.bubble {
    position: absolute;
    background: rgba(0, 150, 255, 0.1);
    border-radius: 50%;
    animation: bubble 8s infinite;
}

.bubble1 {
    width: 20px;
    height: 20px;
    left: 10%;
    animation-delay: 0s;
}

.bubble2 {
    width: 15px;
    height: 15px;
    left: 20%;
    animation-delay: 2s;
}

.bubble3 {
    width: 25px;
    height: 25px;
    left: 35%;
    animation-delay: 4s;
}

.bubble4 {
    width: 18px;
    height: 18px;
    left: 50%;
    animation-delay: 6s;
}

.bubble5 {
    width: 22px;
    height: 22px;
    left: 70%;
    animation-delay: 8s;
}

@keyframes bubble {
    0% {
        bottom: -50px;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        bottom: 100vh;
        opacity: 0;
    }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled .navbar-bg {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(0, 170, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
}

/* Navbar Brand */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.brand-logo {
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(0, 170, 255, 0.5));
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.logo-aura {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(0, 170, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
    animation: logoAura 2s ease-in-out infinite;
}

@keyframes logoAura {
    0%, 100% { 
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% { 
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.brand-text {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 700;
    color: #00aaff;
    text-shadow: 0 0 10px rgba(0, 170, 255, 0.3);
    transition: all 0.3s ease;
}

.navbar-brand:hover .logo-img {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 15px rgba(0, 170, 255, 0.8));
}

.navbar-brand:hover .logo-aura {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
}

.navbar-brand:hover .brand-text {
    text-shadow: 0 0 15px rgba(0, 170, 255, 0.6);
    transform: scale(1.05);
}

/* Navbar Menu */
.navbar-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 25px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-item i {
    font-size: 1rem;
    transition: all 0.3s ease;
}

.menu-item span {
    transition: all 0.3s ease;
}

.item-indicator {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00aaff, #00ccff);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-item:hover {
    color: #ffffff;
    background: rgba(0, 170, 255, 0.1);
    border-color: rgba(0, 170, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 170, 255, 0.2);
}

.menu-item:hover i {
    color: #00aaff;
    transform: scale(1.1);
}

.menu-item:hover .item-indicator {
    width: 80%;
}

.menu-item.active {
    color: #00aaff;
    background: rgba(0, 170, 255, 0.15);
    border-color: rgba(0, 170, 255, 0.4);
    box-shadow: 0 4px 15px rgba(0, 170, 255, 0.3);
}

.menu-item.active i {
    color: #00aaff;
}

.menu-item.active .item-indicator {
    width: 80%;
}

/* Navbar Actions */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.discord-btn {
    background: linear-gradient(135deg, #5865f2, #4752c4);
    color: #ffffff;
    border: 1px solid rgba(88, 101, 242, 0.3);
}

.telegram-btn {
    background: linear-gradient(135deg, #0088cc, #006699);
    color: #ffffff;
    border: 1px solid rgba(0, 136, 204, 0.3);
}

.action-btn i {
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.action-btn:hover {
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.action-btn:hover::before {
    opacity: 1;
}

.action-btn:hover i {
    transform: scale(1.2);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, #00aaff, #00ccff);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-toggle:hover {
    background: rgba(0, 170, 255, 0.1);
    border-color: rgba(0, 170, 255, 0.3);
}

.mobile-toggle:hover span {
    background: linear-gradient(90deg, #00ccff, #00aaff);
}

/* Responsive Navbar */
@media (max-width: 768px) {
    .navbar-container {
        padding: 0 1rem;
    }
    
    .navbar-menu {
        display: none;
    }
    
    .navbar-actions {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .brand-text {
        font-size: 1.5rem;
    }
    
    .brand-logo {
        width: 40px;
        height: 40px;
    }
}

.logo-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: drop-shadow(0 0 15px rgba(0, 170, 255, 0.5));
    position: relative;
    z-index: 2;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(0, 170, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
    animation: logoPulse 2s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% { 
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% { 
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.logo-text {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: #00aaff;
    text-shadow: 
        0 0 10px rgba(0, 170, 255, 0.4),
        0 0 20px rgba(0, 170, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.logo-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(0, 170, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-logo:hover .logo-image {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 20px rgba(0, 170, 255, 0.8));
}

.nav-logo:hover .logo-glow {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
}

.nav-logo:hover .logo-text {
    text-shadow: 
        0 0 15px rgba(0, 170, 255, 0.6),
        0 0 30px rgba(0, 170, 255, 0.3);
    transform: scale(1.05);
}

.nav-logo:hover .logo-text::before {
    opacity: 1;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 30px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 170, 255, 0.2);
    font-size: 0.95rem;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 170, 255, 0.1) 0%,
        rgba(0, 200, 255, 0.15) 50%,
        rgba(0, 170, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 30px;
}

.nav-ripple {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(0, 170, 255, 0.3) 0%, transparent 70%);
    border-radius: 30px;
    opacity: 0;
    transform: scale(0);
    transition: all 0.4s ease;
}

.nav-link:hover::before {
    opacity: 1;
}

.nav-link:hover .nav-ripple {
    opacity: 1;
    transform: scale(1);
}

.nav-link:hover {
    transform: translateY(-3px) scale(1.05);
    border-color: rgba(0, 170, 255, 0.5);
    box-shadow: 
        0 10px 30px rgba(0, 170, 255, 0.3),
        0 0 20px rgba(0, 170, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
}

.nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: linear-gradient(135deg, 
        rgba(0, 170, 255, 0.2) 0%,
        rgba(0, 200, 255, 0.15) 100%);
    border: 1px solid rgba(0, 170, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.nav-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 170, 255, 0.3), rgba(0, 100, 200, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-link:hover .nav-icon::before {
    opacity: 1;
}

.nav-icon i {
    font-size: 1.3rem;
    color: #00aaff;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.nav-link:hover .nav-icon i {
    transform: scale(1.3) rotate(10deg);
    color: #ffffff;
    text-shadow: 0 0 15px rgba(0, 170, 255, 0.8);
}

.nav-link:hover .nav-icon {
    transform: scale(1.1);
    border-color: rgba(0, 170, 255, 0.6);
    box-shadow: 0 0 20px rgba(0, 170, 255, 0.4);
}

.nav-link span {
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    background: rgba(0, 170, 255, 0.1);
    border: 1px solid rgba(0, 170, 255, 0.2);
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(0, 170, 255, 0.2);
    transform: scale(1.05);
}

.bar {
    width: 28px;
    height: 3px;
    background: linear-gradient(90deg, #00aaff, #00ccff);
    margin: 3px 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(0, 170, 255, 0.3);
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #0a1a2e 30%, #16213e 70%, #0a0a0a 100%);
    background-attachment: fixed;
    animation: heroPulse 8s ease-in-out infinite;
}

@keyframes heroPulse {
    0%, 100% { 
        background: linear-gradient(135deg, #0a0a0a 0%, #0a1a2e 30%, #16213e 70%, #0a0a0a 100%);
    }
    50% { 
        background: linear-gradient(135deg, #0a0a0a 0%, #0a1a2e 30%, #1a2a3e 70%, #0a0a0a 100%);
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 170, 255, 0.15) 2px, transparent 2px),
        linear-gradient(90deg, rgba(0, 170, 255, 0.15) 2px, transparent 2px),
        linear-gradient(rgba(0, 100, 200, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 100, 200, 0.05) 1px, transparent 1px);
    background-size: 60px 60px, 60px 60px, 20px 20px, 20px 20px;
    transform: perspective(400px) rotateX(65deg);
    transform-origin: bottom;
    animation: gridMove 25s linear infinite;
    opacity: 0.8;
}

@keyframes gridMove {
    0% {
        transform: perspective(400px) rotateX(65deg) translateY(0);
    }
    100% {
        transform: perspective(400px) rotateX(65deg) translateY(-60px);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(10, 26, 46, 0.5) 50%, rgba(22, 33, 62, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
}

.hero-text {
    flex: 1;
    max-width: 650px;
    animation: slideInLeft 1s ease-out;
    position: relative;
    z-index: 3;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 20px;
    animation: badgeGlow 2s ease-in-out infinite alternate;
}

.badge-text {
    background: linear-gradient(45deg, #00aaff, #0088cc);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 15px rgba(0, 170, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 30px;
}

.title-line-1 {
    display: block;
    font-size: 5.5rem;
    color: #ffffff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    position: relative;
    font-weight: 800;
}

.title-line-2 {
    display: block;
    font-size: 4.5rem;
    color: #00aaff;
    text-shadow: 0 0 20px rgba(0, 170, 255, 0.4);
    margin-left: 25px;
    position: relative;
    font-weight: 800;
}

.title-line-3 {
    display: block;
    font-size: 5.5rem;
    color: #ffffff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    margin-left: 50px;
    position: relative;
    font-weight: 800;
}


.hero-description {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 500px;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button {
    border: none;
    padding: 20px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    min-width: 180px;
    height: 60px;
}

.cta-button::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.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button.primary {
    background: linear-gradient(45deg, #00aaff, #0088cc);
    color: white;
    box-shadow: 
        0 10px 30px rgba(0, 170, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-button.primary .fas {
    opacity: 0;
    transform: scale(0) rotate(-180deg);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: absolute;
    font-size: 1.5rem;
}

.cta-button.primary span {
    transition: all 0.4s ease;
    display: inline-block;
}

.cta-button.primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 15px 40px rgba(0, 170, 255, 0.5),
        0 0 30px rgba(0, 170, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    background: linear-gradient(45deg, #0088cc, #00aaff);
}

.cta-button.primary:hover .fas {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.cta-button.primary:hover span {
    opacity: 0;
    transform: translateY(-20px) scale(0.8);
}

.cta-button.secondary {
    background: linear-gradient(45deg, rgba(26, 26, 26, 0.8), rgba(42, 42, 42, 0.8));
    color: white;
    border: 2px solid #00aaff;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
}

.cta-button.secondary .fab {
    opacity: 0;
    transform: scale(0) rotate(-180deg);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: absolute;
    font-size: 1.5rem;
}

.cta-button.secondary span {
    transition: all 0.4s ease;
    display: inline-block;
}

.cta-button.secondary:hover {
    transform: translateY(-4px) scale(1.02);
    background: linear-gradient(45deg, #00aaff, #0088cc);
    box-shadow: 
        0 15px 40px rgba(0, 170, 255, 0.4),
        0 0 30px rgba(0, 170, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: #00aaff;
}

.cta-button.secondary:hover .fab {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.cta-button.secondary:hover span {
    opacity: 0;
    transform: translateY(-20px) scale(0.8);
}

.cta-button i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: scale(1.1);
}

.hero-character {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: slideInRight 1s ease-out;
    z-index: 2;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.character-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.character-image {
    max-width: 100%;
    height: auto;
    max-height: 85vh;
    object-fit: contain;
    filter: 
        drop-shadow(0 0 40px rgba(0, 170, 255, 0.4))
        drop-shadow(0 0 80px rgba(0, 170, 255, 0.2));
    animation: characterFloat 6s ease-in-out infinite;
    position: relative;
    z-index: 3;
}

@keyframes characterFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-25px) scale(1.02);
    }
}

.character-energy {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(0, 170, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(0, 100, 200, 0.15) 0%, transparent 50%),
        radial-gradient(circle at center, rgba(0, 170, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: energyPulse 4s ease-in-out infinite;
    z-index: 1;
}

@keyframes energyPulse {
    0%, 100% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.character-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.particle {
    position: absolute;
    background: rgba(0, 170, 255, 0.6);
    border-radius: 50%;
    animation: particleFloat 8s ease-in-out infinite;
}

.particle-1 {
    width: 6px;
    height: 6px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle-2 {
    width: 4px;
    height: 4px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.particle-3 {
    width: 8px;
    height: 8px;
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.particle-4 {
    width: 5px;
    height: 5px;
    top: 40%;
    right: 25%;
    animation-delay: 6s;
}

@keyframes particleFloat {
    0%, 100% {
        opacity: 0;
        transform: translateY(0) scale(0);
    }
    10% {
        opacity: 1;
        transform: translateY(-20px) scale(1);
    }
    90% {
        opacity: 1;
        transform: translateY(-100px) scale(1);
    }
}

.hero-bg-text {
    position: absolute;
    top: 50%;
    right: 3%;
    transform: translateY(-50%);
    z-index: 1;
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 9rem;
    color: rgba(0, 170, 255, 0.08);
    line-height: 0.7;
    pointer-events: none;
    animation: bgTextFloat 10s ease-in-out infinite;
    text-shadow: 0 0 50px rgba(0, 170, 255, 0.1);
}

@keyframes bgTextFloat {
    0%, 100% {
        transform: translateY(-50%) rotate(0deg) scale(1);
        opacity: 0.08;
    }
    50% {
        transform: translateY(-50%) rotate(3deg) scale(1.05);
        opacity: 0.12;
    }
}

.bg-text-1 {
    display: block;
    animation: bgTextGlow 6s ease-in-out infinite;
}

.bg-text-2 {
    display: block;
    margin-left: 60px;
    animation: bgTextGlow 6s ease-in-out infinite 1s;
}

@keyframes bgTextGlow {
    0%, 100% {
        text-shadow: 0 0 50px rgba(0, 170, 255, 0.1);
    }
    50% {
        text-shadow: 0 0 80px rgba(0, 170, 255, 0.2);
    }
}

/* Sections */
.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #00aaff;
    text-shadow: 0 0 20px rgba(0, 170, 255, 0.3);
}

/* Products Section */
.products {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.5);
}

.products-header {
    text-align: center;
    margin-bottom: 60px;
}

.best-seller-badge {
    display: inline-block;
    background: linear-gradient(45deg, #00aaff, #0088cc);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 170, 255, 0.3);
}

.section-subtitle {
    color: #cccccc;
    font-size: 1.1rem;
    margin-top: 15px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(20, 20, 30, 0.8) 50%, rgba(10, 10, 10, 0.9) 100%);
    border: 2px solid rgba(0, 170, 255, 0.4);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 170, 255, 0.05) 0%, transparent 50%, rgba(0, 100, 200, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-20px) scale(1.03) rotateX(5deg);
    border-color: rgba(0, 170, 255, 0.8);
    box-shadow: 
        0 30px 70px rgba(0, 170, 255, 0.4),
        0 0 50px rgba(0, 170, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: productFloat 2s ease-in-out infinite;
}

@keyframes productFloat {
    0%, 100% { 
        transform: translateY(-20px) scale(1.03) rotateX(5deg);
    }
    50% { 
        transform: translateY(-25px) scale(1.04) rotateX(3deg);
    }
}

.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.character-bg {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.character-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0, 170, 255, 0.3) 0%, transparent 70%);
    animation: characterGlow 4s ease-in-out infinite;
}

.character-eyes {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 20px;
    background: linear-gradient(90deg, #00aaff, #00ccff);
    border-radius: 50px;
    box-shadow: 0 0 30px rgba(0, 170, 255, 0.8);
    animation: eyesBlink 3s ease-in-out infinite;
}

@keyframes characterGlow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

@keyframes eyesBlink {
    0%, 90%, 100% { height: 20px; }
    95% { height: 5px; }
}

/* Jett - Hızlı ve Agresif */
.jett-bg {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 30%, #0f3460 70%, #1a1a2e 100%);
    position: relative;
}

.jett-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(0, 170, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(0, 100, 200, 0.15) 0%, transparent 50%);
    animation: jettEnergy 3s ease-in-out infinite;
}

@keyframes jettEnergy {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

/* Chamber - Şık ve Profesyonel */
.chamber-bg {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 40%, #2a2a3e 80%, #0a0a0a 100%);
    position: relative;
}

.chamber-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, rgba(0, 170, 255, 0.1) 0%, transparent 50%),
        linear-gradient(-45deg, rgba(0, 100, 200, 0.1) 0%, transparent 50%);
    animation: chamberShine 4s ease-in-out infinite;
}

@keyframes chamberShine {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* Sage - Şifa ve Koruma */
.sage-bg {
    background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
}

.sage-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 30%, rgba(0, 170, 255, 0.2) 0%, transparent 60%),
        radial-gradient(circle at 50% 70%, rgba(0, 100, 200, 0.15) 0%, transparent 60%);
    animation: sageHeal 5s ease-in-out infinite;
}

@keyframes sageHeal {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.7; }
}

/* Reyna - Vampir ve Agresif */
.reyna-bg {
    background: linear-gradient(135deg, #2a0a0a 0%, #1a1a2e 30%, #0f3460 70%, #2a0a0a 100%);
    position: relative;
}

.reyna-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 170, 255, 0.3) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(0, 100, 200, 0.2) 0%, transparent 40%);
    animation: reynaBlood 3.5s ease-in-out infinite;
}

@keyframes reynaBlood {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

/* Omen - Gölge ve Gizem */
.omen-bg {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a2e 30%, #2a1a3e 70%, #0a0a0a 100%);
    position: relative;
}

.omen-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(0, 170, 255, 0.15) 0%, transparent 70%),
        linear-gradient(45deg, rgba(0, 100, 200, 0.1) 0%, transparent 50%);
    animation: omenShadow 6s ease-in-out infinite;
}

@keyframes omenShadow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* Cypher - Teknoloji ve Gözetleme */
.cypher-bg {
    background: linear-gradient(135deg, #0a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
}

.cypher-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, rgba(0, 170, 255, 0.1) 0%, transparent 50%),
        linear-gradient(0deg, rgba(0, 100, 200, 0.1) 0%, transparent 50%);
    animation: cypherScan 4s ease-in-out infinite;
}

@keyframes cypherScan {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.7; }
}

/* Tech - Teknoloji ve Sistem */
.tech-bg {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 30%, #0f3460 70%, #0a0a0a 100%);
    position: relative;
}

.tech-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(45deg, rgba(0, 170, 255, 0.05) 0%, transparent 2px, transparent 10px, rgba(0, 170, 255, 0.05) 12px),
        radial-gradient(circle at center, rgba(0, 100, 200, 0.1) 0%, transparent 70%);
    animation: techPulse 3s ease-in-out infinite;
}

@keyframes techPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* Valorant Legend - Efsanevi Hile */
.valorant-legend-bg {
    background: linear-gradient(135deg, #1a0a2e 0%, #16213e 30%, #0f3460 70%, #1a0a2e 100%);
    position: relative;
}

.valorant-legend-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(0, 170, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(0, 100, 200, 0.2) 0%, transparent 50%);
    animation: legendPower 3s ease-in-out infinite;
}

@keyframes legendPower {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.7; }
}

/* Perm Spoofer - Kalıcı Spoofer */
.perm-spoofer-bg {
    background: linear-gradient(135deg, #0a1a2e 0%, #16213e 30%, #0f3460 70%, #0a1a2e 100%);
    position: relative;
}

.perm-spoofer-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, rgba(0, 170, 255, 0.2) 0%, transparent 50%),
        linear-gradient(-45deg, rgba(0, 100, 200, 0.15) 0%, transparent 50%);
    animation: spooferTech 4s ease-in-out infinite;
}

@keyframes spooferTech {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 3;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.product-badge:hover {
    transform: scale(1.05);
}

.product-badge.undetected {
    background: linear-gradient(45deg, #00ff88, #00cc66);
    color: #000;
    box-shadow: 
        0 6px 20px rgba(0, 255, 136, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    animation: undetectedPulse 2s ease-in-out infinite;
}

@keyframes undetectedPulse {
    0%, 100% { box-shadow: 0 6px 20px rgba(0, 255, 136, 0.4); }
    50% { box-shadow: 0 8px 25px rgba(0, 255, 136, 0.6); }
}

.product-badge.updating {
    background: linear-gradient(45deg, #00aaff, #0088cc);
    color: white;
    box-shadow: 
        0 6px 20px rgba(0, 170, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    animation: updatingPulse 2s ease-in-out infinite;
}

@keyframes updatingPulse {
    0%, 100% { box-shadow: 0 6px 20px rgba(0, 170, 255, 0.4); }
    50% { box-shadow: 0 8px 25px rgba(0, 170, 255, 0.6); }
}

.product-info {
    padding: 25px 20px;
}

.product-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
}

.product-price {
    text-align: center;
    margin-bottom: 20px;
}

.price-label {
    display: block;
    color: #cccccc;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.price-value {
    display: block;
    color: #00aaff;
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
}

.buy-now-btn {
    width: 100%;
    background: linear-gradient(45deg, #00aaff, #0088cc);
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(0, 170, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    z-index: 2;
}

.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.2), transparent);
    transition: left 0.6s ease;
}

.buy-now-btn:hover::before {
    left: 100%;
}

.buy-now-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 15px 40px rgba(0, 170, 255, 0.4),
        0 0 20px rgba(0, 170, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(45deg, #0088cc, #00aaff);
}

.buy-now-btn:active {
    transform: translateY(-1px) scale(0.98);
}

.buy-now-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.buy-now-btn:hover i {
    transform: scale(1.1);
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.5);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 170, 255, 0.2);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 170, 255, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.faq-item:hover::before {
    left: 100%;
}

.faq-item:hover {
    border-color: rgba(0, 170, 255, 0.4);
    box-shadow: 0 15px 40px rgba(0, 170, 255, 0.2);
    transform: translateY(-5px);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 170, 255, 0.05);
}

.faq-question h3 {
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.3px;
}

.faq-icon {
    font-size: 1.5rem;
    color: #00aaff;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 30px 25px 30px;
    color: #cccccc;
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: 0.2px;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(10, 26, 46, 0.3) 50%, rgba(0, 0, 0, 0.5) 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 170, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 100, 200, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact-header {
    text-align: center;
    margin-bottom: 80px;
}

.contact-subtitle {
    color: #cccccc;
    font-size: 1.2rem;
    margin-top: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.contact-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(0, 170, 255, 0.3);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 170, 255, 0.1), rgba(0, 100, 200, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-item:hover::before {
    opacity: 1;
}

.contact-item:hover {
    transform: translateY(-20px) scale(1.03) rotateY(5deg);
    border-color: rgba(0, 170, 255, 0.6);
    box-shadow: 
        0 30px 60px rgba(0, 170, 255, 0.3),
        0 0 50px rgba(0, 170, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: contactFloat 2s ease-in-out infinite;
}

@keyframes contactFloat {
    0%, 100% { 
        transform: translateY(-20px) scale(1.03) rotateY(5deg);
    }
    50% { 
        transform: translateY(-25px) scale(1.04) rotateY(3deg);
    }
}

.contact-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.contact-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #ffffff;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    background: linear-gradient(135deg, rgba(0, 170, 255, 0.2), rgba(0, 100, 200, 0.1));
    border: 2px solid rgba(0, 170, 255, 0.3);
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 170, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.4s ease;
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.2); }
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(0, 170, 255, 0.4), rgba(0, 100, 200, 0.2));
    border-color: rgba(0, 170, 255, 0.6);
    box-shadow: 0 0 30px rgba(0, 170, 255, 0.5);
}

.contact-item:hover .icon-glow {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.3);
}

.contact-content h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: #ffffff;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
}

.contact-description {
    color: #aaaaaa;
    font-size: 0.95rem;
    margin-bottom: 15px;
    font-style: italic;
}

.contact-info {
    color: #00aaff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.5px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #00aaff, #0088cc);
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 170, 255, 0.3);
}

.contact-link::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.6s ease;
}

.contact-link:hover::before {
    left: 100%;
}

.contact-link:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 170, 255, 0.4);
    background: linear-gradient(45deg, #0088cc, #00aaff);
}

.contact-link i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.contact-link:hover i {
    transform: scale(1.2);
}

/* Contact Stats */
.contact-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 170, 255, 0.2);
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    min-width: 150px;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 170, 255, 0.1), rgba(0, 100, 200, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: rgba(0, 170, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 170, 255, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00aaff;
    margin-bottom: 10px;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 1px;
}

.stat-label {
    font-size: 1rem;
    color: #cccccc;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: 'Inter', sans-serif;
}

/* Responsive Contact */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .contact-stats {
        gap: 30px;
    }
    
    .stat-item {
        min-width: 120px;
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid rgba(0, 170, 255, 0.2);
}

.footer p {
    color: #cccccc;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
    }
    
    .hero-text {
        max-width: 100%;
        margin-bottom: 40px;
    }
    
    .hero-character {
        max-width: 400px;
    }
    
    .character-image {
        max-height: 60vh;
    }
    
    .hero-bg-text {
        display: none;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 10px 0;
    }
    
    .title-line-1 {
        font-size: 3rem;
    }
    
    .title-line-2 {
        font-size: 2.5rem;
        margin-left: 10px;
    }
    
    .title-line-3 {
        font-size: 3rem;
        margin-left: 20px;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
    
    .character-image {
        max-height: 50vh;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .title-line-1 {
        font-size: 2.5rem;
    }
    
    .title-line-2 {
        font-size: 2rem;
        margin-left: 5px;
    }
    
    .title-line-3 {
        font-size: 2.5rem;
        margin-left: 10px;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .character-image {
        max-height: 40vh;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(5, 5, 15, 0.98) 0%, rgba(15, 15, 25, 0.95) 50%, rgba(5, 5, 15, 0.98) 100%);
    backdrop-filter: blur(25px);
    border-top: 1px solid rgba(0, 170, 255, 0.2);
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 170, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 100, 200, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(0, 170, 255, 0.4));
    transition: all 0.3s ease;
}

.footer-logo:hover .footer-logo-img {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 15px rgba(0, 170, 255, 0.6));
}

.footer-brand {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: #00aaff;
    text-shadow: 0 0 10px rgba(0, 170, 255, 0.3);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-section h4 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #00aaff, #00ccff);
    border-radius: 2px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-section a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #00aaff, #00ccff);
    transition: width 0.3s ease;
}

.footer-section a:hover {
    color: #00aaff;
    padding-left: 15px;
    text-shadow: 0 0 8px rgba(0, 170, 255, 0.4);
}

.footer-section a:hover::before {
    width: 10px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.footer-copyright p {
    color: #aaaaaa;
    font-size: 0.9rem;
    margin: 0;
    font-weight: 400;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 170, 255, 0.2);
    border-radius: 50%;
    color: #00aaff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 170, 255, 0.1), rgba(0, 100, 200, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    border-color: rgba(0, 170, 255, 0.4);
    box-shadow: 0 8px 25px rgba(0, 170, 255, 0.2);
    color: #ffffff;
}

.social-link:hover::before {
    opacity: 1;
}

.social-link i {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.social-link:hover i {
    transform: scale(1.2);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-brand {
        font-size: 1.8rem;
    }
    
    .footer-logo-img {
        width: 40px;
        height: 40px;
    }
}
