/* Reset ve temel stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-purple: #8B5CF6;
    --secondary-purple: #A855F7;
    --dark-purple: #6D28D9;
    --light-purple: #C4B5FD;
    --bg-dark: #0F0F23;
    --bg-darker: #0A0A1A;
    --text-light: #E5E7EB;
    --text-dim: #9CA3AF;
    --glass-bg: rgba(139, 92, 246, 0.1);
    --glass-border: rgba(139, 92, 246, 0.2);
    --neo-shadow-light: rgba(255, 255, 255, 0.1);
    --neo-shadow-dark: rgba(0, 0, 0, 0.3);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Arka plan animasyonları */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 50%, #1A1A2E 100%);
}

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, var(--light-purple), transparent),
        radial-gradient(2px 2px at 40px 70px, var(--secondary-purple), transparent),
        radial-gradient(1px 1px at 90px 40px, var(--primary-purple), transparent),
        radial-gradient(1px 1px at 130px 80px, var(--light-purple), transparent),
        radial-gradient(2px 2px at 160px 30px, var(--secondary-purple), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
}

@keyframes sparkle {
    from { transform: translateX(0); }
    to { transform: translateX(-200px); }
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-purple), var(--secondary-purple));
    opacity: 0.1;
    animation: float 15s infinite ease-in-out;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: -5s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    bottom: 30%;
    left: 20%;
    animation-delay: -10s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 40%;
    right: 40%;
    animation-delay: -7s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-30px) rotate(120deg); }
    66% { transform: translateY(20px) rotate(240deg); }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    backdrop-filter: blur(10px);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    margin: 20px 0;
    padding: 20px 30px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 var(--neo-shadow-light);
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    box-shadow: 
        0 4px 15px rgba(139, 92, 246, 0.4),
        inset 0 1px 0 var(--neo-shadow-light);
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.logo h1 {
    font-size: 28px;
    font-weight: 700;
}

.logo h1 a {
    background: linear-gradient(135deg, var(--primary-purple), var(--light-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo h1 a:hover {
    background: linear-gradient(135deg, var(--light-purple), var(--secondary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: scale(1.05);
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.status-dot {
    width: 10px;
    height: 10px;
    background: #22C55E;
    border-radius: 50%;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

/* Ana içerik */
.main-content {
    padding: 40px 0;
}

.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding: 60px 0;
}

.hero-text {
    animation: slideInLeft 1s ease-out;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-purple), var(--light-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-dim);
    line-height: 1.6;
    max-width: 500px;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Server animasyonu */
.hero-visual {
    display: flex;
    justify-content: center;
    animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.server-animation {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 var(--neo-shadow-light);
}

.server-rack {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.server-unit {
    width: 200px;
    height: 60px;
    background: linear-gradient(135deg, #1F2937, #374151);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    border: 1px solid #4B5563;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.server-unit.active {
    background: linear-gradient(135deg, var(--dark-purple), var(--primary-purple));
    border-color: var(--secondary-purple);
    box-shadow: 
        0 4px 20px rgba(139, 92, 246, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.server-label {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-light);
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
    transition: all 0.3s ease;
    user-select: none;
}

.server-unit.active .server-label {
    color: white;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

.server-unit:hover .server-label {
    transform: scale(1.2);
    text-shadow: 0 0 20px var(--primary-purple);
}

.server-unit.clicked {
    animation: serverClick 0.3s ease;
}

@keyframes serverClick {
    0% { transform: scale(1); }
    50% { transform: scale(0.95); background: linear-gradient(135deg, var(--secondary-purple), var(--light-purple)); }
    100% { transform: scale(1); }
}

.server-lights {
    display: flex;
    gap: 8px;
}

.light {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: lightBlink 2s infinite;
}

.light.green {
    background: #22C55E;
    box-shadow: 0 0 10px #22C55E;
}

.light.blue {
    background: #3B82F6;
    box-shadow: 0 0 10px #3B82F6;
    animation-delay: 0.5s;
}

.light.orange {
    background: #F59E0B;
    box-shadow: 0 0 10px #F59E0B;
    animation-delay: 1s;
}

.light.red {
    background: #EF4444;
    box-shadow: 0 0 10px #EF4444;
    animation-delay: 1.5s;
}

@keyframes lightBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

/* Özellikler bölümü */
.features-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 var(--neo-shadow-light);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(139, 92, 246, 0.3),
        inset 0 1px 0 var(--neo-shadow-light);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    margin: 0 auto 25px;
    box-shadow: 
        0 10px 25px rgba(139, 92, 246, 0.4),
        inset 0 1px 0 var(--neo-shadow-light);
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-light);
}

.feature-card p {
    color: var(--text-dim);
    line-height: 1.6;
}

/* İstatistikler bölümü */
.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
    padding: 60px 40px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 var(--neo-shadow-light);
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-purple), var(--light-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 16px;
    color: var(--text-dim);
    font-weight: 500;
}

/* Minimal Footer */
.footer {
    margin-top: 60px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 var(--neo-shadow-light);
}

.footer-content {
    padding: 32px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-bottom: 20px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-brand-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-brand-link:hover {
    transform: translateY(-1px);
}

.footer-logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: white;
    box-shadow: 
        0 4px 12px rgba(139, 92, 246, 0.3),
        inset 0 1px 0 var(--neo-shadow-light);
}

.footer-brand-link span {
    font-size: 18px;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-purple), var(--light-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    font-size: 12px;
    color: var(--text-dim);
    margin: 0;
    margin-left: 42px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a:hover {
    color: var(--primary-purple);
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-purple);
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
    box-shadow: 
        0 3px 10px rgba(139, 92, 246, 0.3),
        inset 0 1px 0 var(--neo-shadow-light);
}

.social-link:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 
        0 5px 15px rgba(139, 92, 246, 0.5),
        inset 0 1px 0 var(--neo-shadow-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
}

.footer-bottom p {
    color: var(--text-dim);
    font-size: 12px;
    margin: 0;
}

/* Responsive tasarım */
@media (max-width: 1200px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-section {
        gap: 50px;
    }
    
    .hero-title {
        font-size: 44px;
    }
    
    .features-section {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 1024px) {
    .hero-section {
        gap: 40px;
        padding: 50px 0;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 17px;
    }
    
    .features-section {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .stats-section {
        padding: 50px 30px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 16px 20px;
        margin: 12px 0;
    }
    
    .logo {
        flex-direction: row;
        gap: 10px;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .logo h1 {
        font-size: 20px;
    }
    
    .status-indicator {
        padding: 6px 12px;
        font-size: 13px;
        border-radius: 20px;
    }
    
    .status-dot {
        width: 8px;
        height: 8px;
    }
    
    .hero-section {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 16px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        max-width: 100%;
        line-height: 1.5;
    }
    
    .server-animation {
        padding: 20px;
        margin: 0 auto;
        max-width: 320px;
        border-radius: 16px;
    }
    
    .server-unit {
        width: 200px;
        height: 50px;
        padding: 0 16px;
        border-radius: 6px;
    }
    
    .server-label {
        font-size: 16px;
    }
    
    .light {
        width: 7px;
        height: 7px;
    }
    
    .features-section {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 50px;
    }
    
    .feature-card {
        padding: 28px 20px;
        max-width: 100%;
        margin: 0;
        border-radius: 16px;
    }
    
    .feature-icon {
        width: 64px;
        height: 64px;
        font-size: 26px;
        margin-bottom: 16px;
        border-radius: 16px;
    }
    
    .feature-card h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .feature-card p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .stats-section {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        padding: 32px 20px;
        margin-bottom: 50px;
        border-radius: 20px;
    }
    
    .stat-item {
        padding: 12px 8px;
    }
    
    .stat-number {
        font-size: 28px;
        margin-bottom: 6px;
    }
    
    .stat-label {
        font-size: 12px;
        line-height: 1.3;
    }
    
    .footer-content {
        padding: 24px 20px;
    }
    
    .footer-main {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 16px;
        text-align: center;
    }
    
    .footer-brand {
        align-items: center;
    }
    
    .footer-tagline {
        margin-left: 0;
    }
    
    .footer-links {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-social {
        gap: 12px;
    }
    
    .footer-bottom {
        padding-top: 16px;
    }
    
    .floating-shapes .shape {
        opacity: 0.05;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .header {
        padding: 12px 16px;
        margin: 8px 0;
        border-radius: 16px;
    }
    
    .logo-icon {
        width: 36px;
        height: 36px;
        font-size: 18px;
        border-radius: 10px;
    }
    
    .logo h1 {
        font-size: 18px;
    }
    
    .status-indicator {
        padding: 5px 10px;
        font-size: 11px;
        border-radius: 16px;
    }
    
    .status-dot {
        width: 7px;
        height: 7px;
    }
    
    .hero-section {
        gap: 24px;
        padding: 32px 0;
    }
    
    .hero-title {
        font-size: 24px;
        line-height: 1.2;
        margin-bottom: 12px;
    }
    
    .hero-subtitle {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .server-animation {
        padding: 16px;
        max-width: 280px;
        border-radius: 12px;
    }
    
    .server-unit {
        width: 160px;
        height: 42px;
        padding: 0 12px;
        border-radius: 5px;
    }
    
    .server-label {
        font-size: 14px;
    }
    
    .light {
        width: 6px;
        height: 6px;
    }
    
    .features-section {
        margin-bottom: 40px;
        gap: 12px;
    }
    
    .feature-card {
        padding: 24px 16px;
        border-radius: 12px;
    }
    
    .feature-icon {
        width: 56px;
        height: 56px;
        font-size: 22px;
        margin-bottom: 12px;
        border-radius: 14px;
    }
    
    .feature-card h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .feature-card p {
        font-size: 13px;
        line-height: 1.4;
    }
    
    .stats-section {
        padding: 24px 16px;
        margin-bottom: 40px;
        gap: 12px;
        border-radius: 16px;
    }
    
    .stat-item {
        padding: 8px 4px;
    }
    
    .stat-number {
        font-size: 24px;
        margin-bottom: 4px;
    }
    
    .stat-label {
        font-size: 11px;
        line-height: 1.2;
    }
    
    .footer-content {
        padding: 20px 16px;
    }
    
    .footer-main {
        gap: 16px;
        margin-bottom: 12px;
    }
    
    .footer-logo-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .footer-brand-link span {
        font-size: 16px;
    }
    
    .footer-tagline {
        font-size: 11px;
    }
    
    .footer-links {
        gap: 16px;
    }
    
    .footer-links a {
        font-size: 13px;
    }
    
    .social-link {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }
    
    .footer-bottom {
        padding-top: 12px;
    }
    
    .footer-bottom p {
        font-size: 10px;
    }
    
    .floating-shapes .shape {
        opacity: 0.03;
    }
}

/* Büyük ekranlar için */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
        padding: 0 40px;
    }
    
    .hero-title {
        font-size: 52px;
    }
    
    .hero-subtitle {
        font-size: 19px;
    }
    
    .feature-card {
        padding: 45px 35px;
    }
    
    .feature-icon {
        width: 90px;
        height: 90px;
        font-size: 36px;
    }
    
    .stats-section {
        padding: 60px 50px;
    }
    
    .footer-content {
        padding: 50px;
    }
}

/* Yatay mod için özel ayarlar */
@media (max-height: 600px) and (orientation: landscape) {
    .header {
        padding: 10px 20px;
        margin: 5px 0;
    }
    
    .hero-section {
        padding: 15px 0;
        gap: 25px;
    }
    
    .hero-title {
        font-size: 28px;
        margin-bottom: 8px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .server-animation {
        padding: 15px;
    }
    
    .features-section {
        margin-bottom: 30px;
        grid-template-columns: repeat(3, 1fr);
    }
    
    .feature-card {
        padding: 20px 15px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .stats-section {
        margin-bottom: 30px;
        padding: 25px 20px;
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        padding: 25px 30px;
    }
}

/* Çok küçük ekranlar (320px ve altı) */
@media (max-width: 320px) {
    .container {
        padding: 0 8px;
    }
    
    .header {
        padding: 10px;
    }
    
    .hero-title {
        font-size: 22px;
    }
    
    .hero-subtitle {
        font-size: 13px;
    }
    
    .server-animation {
        padding: 10px;
        max-width: 200px;
    }
    
    .server-unit {
        width: 120px;
        height: 40px;
        padding: 0 10px;
    }
    
    .server-label {
        font-size: 12px;
    }
    
    .feature-card {
        padding: 20px 15px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .stats-section {
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .footer-content {
        padding: 20px 15px;
    }
    
    .footer-links {
        gap: 10px;
    }
    
    .social-link {
        width: 28px;
        height: 28px;
        font-size: 10px;
    }
}

/* Erişilebilirlik - Reduced motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .stars {
        animation: none;
    }
    
    .shape {
        animation: none;
    }
    
    .light {
        animation: none;
    }
    
    .logo-icon {
        animation: none;
    }
    
    .status-dot {
        animation: none;
    }
}

/* Print stilleri */
@media print {
    .background,
    .floating-shapes,
    .stars {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .header,
    .feature-card,
    .stats-section,
    .footer {
        background: white;
        border: 1px solid #ccc;
        box-shadow: none;
    }
} 