/**
 * nitro.biz - Modern Yönlendirme Sayfası Stilleri
 * Nitrobahis Marka Renk Paleti: Neon Mavi, Siyah, Beyaz
 */

/* CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Nitrobahis Renk Paleti - Yeşil Tonları */
    --primary-green: #00c853;
    --primary-green-dark: #00a844;
    --primary-green-light: #00e676;
    --secondary-black: #0a0a0a;
    --secondary-dark: #1a1a1a;
    --secondary-darker: #0f0f0f;
    --text-white: #ffffff;
    --text-light-gray: #e0e0e0;
    --text-gray: #b0b0b0;
    --accent-gradient: linear-gradient(135deg, #00c853 0%, #00a844 50%, #00e676 100%);
    --shadow-green: 0 0 20px rgba(0, 200, 83, 0.3),
                   0 0 40px rgba(0, 200, 83, 0.2),
                   0 0 60px rgba(0, 200, 83, 0.1);
    --shadow-dark: 0 10px 40px rgba(0, 0, 0, 0.5);
    --warning-bg: rgba(255, 193, 7, 0.1);
    --warning-border: rgba(255, 193, 7, 0.3);
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--secondary-black);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 200, 83, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 200, 83, 0.05) 0%, transparent 50%);
    color: var(--text-white);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInDown 0.8s ease-out;
}

.main-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: var(--text-light-gray);
    font-weight: 300;
    letter-spacing: 0.05em;
}

/* Main Content */
.main-content {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Redirect Info */
.redirect-info {
    margin-bottom: 3rem;
}

.info-text {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.domain-name {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--primary-green);
    text-shadow: 0 0 10px rgba(0, 200, 83, 0.5);
    word-break: break-all;
}

/* Warning Box */
.warning-box {
    background: var(--warning-bg);
    border: 1px solid var(--warning-border);
    border-radius: 10px;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease-out 0.3s both;
}

.warning-text {
    color: #ffc107;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    text-align: center;
    margin: 0;
    font-weight: 500;
}

/* SEO Content */
.seo-content {
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.seo-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    margin-top: 0;
    text-align: center;
    font-weight: 700;
}

.seo-subtitle {
    font-size: clamp(1.4rem, 4vw, 1.8rem);
    color: var(--primary-green);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.seo-text {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    color: var(--text-light-gray);
    line-height: 1.8;
    margin-bottom: 1.2rem;
    text-align: justify;
}

/* Countdown Container */
.countdown-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 3rem 0;
}

.countdown-circle {
    position: relative;
    width: 200px;
    height: 200px;
    max-width: 70vw;
    max-height: 70vw;
}

.countdown-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.countdown-bg {
    fill: none;
    stroke: var(--secondary-dark);
    stroke-width: 8;
}

.countdown-progress {
    fill: none;
    stroke: var(--primary-green);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 565.48;
    stroke-dashoffset: 565.48;
    transition: stroke-dashoffset 1s linear;
    filter: drop-shadow(0 0 10px rgba(0, 200, 83, 0.6));
}

.countdown-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.countdown-number {
    display: block;
    font-size: clamp(2.5rem, 10vw, 4rem);
    font-weight: 700;
    color: var(--text-white);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(0, 200, 83, 0.8);
}

.countdown-label {
    display: block;
    font-size: clamp(0.9rem, 2.5vw, 1.2rem);
    color: var(--text-light-gray);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Action Buttons */
.action-buttons {
    margin-top: 2rem;
}

.btn-primary {
    background: var(--accent-gradient);
    border: none;
    padding: 1.2rem 3rem;
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    font-weight: 600;
    color: var(--text-white);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-green);
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 200, 83, 0.6),
                0 0 60px rgba(0, 200, 83, 0.4),
                0 10px 40px rgba(0, 0, 0, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-primary:focus {
    outline: 2px solid var(--primary-green);
    outline-offset: 4px;
}

/* Footer */
.footer {
    margin-top: auto;
    padding-top: 3rem;
    border-top: 1px solid rgba(0, 200, 83, 0.2);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
}

.footer-text {
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: var(--text-light-gray);
    line-height: 1.8;
    text-align: justify;
}

.footer-text p {
    margin-bottom: 1.2rem;
}

.footer-link {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.footer-link:hover {
    color: var(--primary-green-light);
    border-bottom-color: var(--primary-green);
    text-shadow: 0 0 10px rgba(0, 200, 83, 0.5);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem 1rem;
    }
    
    .header {
        margin-bottom: 2rem;
    }
    
    .main-content {
        margin-bottom: 3rem;
    }
    
    .countdown-circle {
        width: 180px;
        height: 180px;
    }
    
    .seo-text {
        text-align: left;
    }
    
    .btn-primary {
        padding: 1rem 2rem;
        width: 100%;
        max-width: 300px;
    }
    
    .footer-text {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem 0.75rem;
    }
    
    .countdown-circle {
        width: 160px;
        height: 160px;
    }
    
    .btn-primary {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* Performance Optimizations */
.countdown-progress {
    will-change: stroke-dashoffset;
}

.btn-primary {
    will-change: transform, box-shadow;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    body {
        background: white;
        color: black;
    }
    
    .btn-primary,
    .countdown-container {
        display: none;
    }
}

