/* Universal styles from your provided styles.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', 'Arial', sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    min-height: 100vh;
    padding: 20px;
    color: #e8e8e8;
    line-height: 1.6;
    display: flex; /* Added for centering content */
    justify-content: center; /* Added for centering content */
    align-items: center; /* Added for centering content */
}

.container {
    max-width: 800px; /* Adjusted for coming soon page */
    margin: 0 auto;
    background: linear-gradient(145deg, #333333, #2a2a2a);
    border-radius: 20px;
    padding: 40px; /* Increased padding */
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    text-align: center; /* Centered content */
    position: relative; /* For dartboard background */
    overflow: hidden; /* Ensure dartboard doesn't overflow */
}

/* Dartboard background effect */
.container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px; /* Size of the dartboard */
    height: 600px;
    background: radial-gradient(circle at center,
        #ff4444 0%, /* Red */
        #1a1a1a 10%, /* Black */
        #d4af37 20%, /* Gold */
        #1a1a1a 30%, /* Black */
        #ff4444 40%, /* Red */
        #1a1a1a 50%, /* Black */
        #d4af37 60%, /* Gold */
        #1a1a1a 70% /* Black */
    );
    border-radius: 50%;
    opacity: 0.05; /* Very subtle */
    transform: translate(-50%, -50%) rotate(45deg); /* Center and rotate slightly */
    z-index: -1; /* Behind content */
}


h1 {
    text-align: center;
    color: #d4af37;
    margin-bottom: 20px; /* Adjusted margin */
    font-size: 3rem; /* Increased font size */
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 3px; /* Increased letter spacing */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px; /* Space between text and icons */
}

h1 .icon-left, h1 .icon-right {
    font-size: 2.5rem; /* Size of the dart icons */
    color: #ff4444; /* Red accent for icons */
    animation: bounce 2s infinite ease-in-out;
}

h1 .icon-right {
    animation-delay: 0.5s; /* Slight delay for a subtle wave effect */
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.tagline {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 40px; /* More space below tagline */
    font-weight: 500;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 10px; /* Increased gap */
    margin-bottom: 40px;
}

.countdown-item {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    padding: 20px; /* Increased padding */
    border-radius: 15px; /* Softer corners */
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    flex: 1; /* Make items take equal space */
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* Dart-like pointer for countdown items */
.countdown-item::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: #ff4444; /* Red tip */
    transform: rotate(45deg);
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(255, 68, 68, 0.5);
    z-index: 1;
}

.countdown-item .number {
    display: block;
    font-size: 3.5rem; /* Large numbers */
    font-weight: 900;
    color: #d4af37;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    margin-bottom: 5px;
    position: relative; /* To ensure numbers are above the dart tip */
    z-index: 2;
}

.countdown-item .label {
    font-size: 0.9rem;
    color: #e8e8e8;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    position: relative; /* To ensure labels are above the dart tip */
    z-index: 2;
}

.description {
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 40px; /* Space before subscribe section */
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.subscribe-section {
    margin-bottom: 40px;
}

.subscribe-section p {
    font-size: 1.1rem;
    color: #d4af37;
    margin-bottom: 15px;
    font-weight: 600;
}

.form-group {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

input[type="email"] {
    flex-grow: 1;
    padding: 12px 20px; /* Adjusted padding */
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    font-size: 1.1rem; /* Larger font */
    transition: all 0.3s ease;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    color: #e8e8e8;
}

input[type="email"]:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.3); /* Larger shadow on focus */
    transform: translateY(-2px);
    background: linear-gradient(145deg, #333333, #2a2a2a);
}

input[type="email"]::placeholder {
    color: #888;
}

.btn {
    background: linear-gradient(45deg, #ff4444, #d4af37);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem; /* Larger font */
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 68, 68, 0.3);
    flex-shrink: 0;
    display: flex; /* For icon alignment */
    align-items: center;
    gap: 8px; /* Space between icon and text */
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 68, 68, 0.4);
    background: linear-gradient(45deg, #d4af37, #ff4444);
}

.btn:active {
    transform: translateY(0);
}

.alert {
    padding: 15px;
    margin-top: 20px;
    border-radius: 10px;
    font-weight: 500;
    text-align: center;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.alert-success {
    background: rgba(212, 175, 55, 0.2);
    color: #d4af37;
    border: 1px solid rgba(212, 175, 55, 0.4);
}

.alert-error {
    background: rgba(255, 68, 68, 0.2);
    color: #ff6b6b;
    border: 1px solid rgba(255, 68, 68, 0.4);
}

.social-links {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    color: #d4af37;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-icon:hover {
    background: linear-gradient(45deg, #d4af37, #ff4444);
    color: white;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
    border-color: rgba(212, 175, 55, 0.5);
}

.footer-note {
    margin-top: 30px;
    font-size: 0.9rem;
    color: #888;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

body {
    animation: fadeIn 1s ease-out;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
        gap: 10px;
    }
    h1 .icon-left, h1 .icon-right {
        font-size: 2rem;
    }

    .countdown {
        flex-wrap: wrap;
        gap: 15px;
    }

    .countdown-item {
        flex: 0 0 calc(50% - 15px); /* Two items per row */
        max-width: none;
        padding: 15px;
    }

    .countdown-item .number {
        font-size: 2.5rem;
    }

    .form-group {
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
        gap: 8px;
    }
    h1 .icon-left, h1 .icon-right {
        font-size: 1.8rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .countdown-item {
        flex: 0 0 100%; /* One item per row */
    }

    .countdown-item .number {
        font-size: 2rem;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    .container {
        padding: 30px 20px;
    }
}