* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier New', 'Courier', monospace;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #1a1a1a;
    letter-spacing: 1px;
}

/* Header & Navigation */
header {
    background: rgba(13, 13, 13, 0.7);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    border-bottom: 1px solid rgba(51, 51, 51, 0.5);
}

.counter-container {
    text-align: center;
    padding: 1rem 2rem 0.5rem;
}

.counter {
    font-size: 2.5rem;
    font-weight: bold;
    color: #e0e0e0;
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
    margin-bottom: 0.3rem;
    text-shadow: 0 0 10px rgba(224, 224, 224, 0.3);
}

.counter-label {
    font-size: 0.9rem;
    color: #888;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .counter {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .counter-label {
        font-size: 0.8rem;
    }
    
    .counter-container {
        padding: 0.75rem 1rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .counter {
        font-size: 1.5rem;
    }
    
    .counter-label {
        font-size: 0.75rem;
    }
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    nav {
        padding: 0 1rem;
    }
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    height: 50px;
    width: auto;
    transition: transform 0.3s, filter 0.3s;
}

@media (max-width: 768px) {
    .logo {
        height: 40px;
    }
}

.logo:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

nav h1 {
    font-size: 1.8rem;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

nav a:hover {
    opacity: 0.8;
}

/* Hero Section */
.hero {
    background: url('background.jpg') center center no-repeat;
    background-size: cover;
    background-position: 65% 100%;
    background-attachment: fixed;
    color: white;
    min-height: calc(100vh - 100px);
    padding: 2rem;
    text-align: center;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 3rem;
}

@media (max-width: 768px) {
    .hero {
        padding: 1rem;
        min-height: calc(100vh - 80px);
        background-attachment: scroll;
        background-position: 60% 30%;
    }
}

@media (max-width: 480px) {
    .hero {
        background-position: 55% 35%;
    }
}

.hero-content {
    background: rgba(13, 13, 13, 0.85);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    border: 1px solid #333;
}

@media (max-width: 768px) {
    .hero-content {
        padding: 1.5rem 1rem;
        border-radius: 8px;
    }
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

.cta-button {
    background: #2d2d2d;
    color: #e0e0e0;
    border: 1px solid #555;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    -webkit-tap-highlight-color: transparent;
}

@media (max-width: 768px) {
    .cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
        min-height: 44px;
    }
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    background: #3d3d3d;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* About Section */
.about {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #667eea;
}

.about > .container > p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #666;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #667eea;
}

/* Contact Section */
.contact {
    padding: 5rem 2rem;
    background: #1a1a1a;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #e0e0e0;
}

form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

input, textarea {
    padding: 1rem;
    border: 2px solid #333;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
    background: #2d2d2d;
    color: #e0e0e0;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #555;
    background: #333;
}

form button {
    background: #2d2d2d;
    color: #e0e0e0;
    border: 1px solid #555;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    background: #3d3d3d;
}

/* Footer */
footer {
    background: #0d0d0d;
    color: #888;
    text-align: center;
    padding: 2rem;
    border-top: 1px solid #333;
    font-family: 'Courier New', 'Courier', monospace;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    nav {
        flex-direction: column;
        gap: 1rem;
    }

    nav ul {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav a {
        font-size: 0.95rem;
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .hero-content h2 {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 1rem;
        line-height: 1.5;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .container {
        padding: 0 1rem;
    }

    .about, .contact {
        padding: 3rem 1rem;
    }

    .about h2, .contact h2 {
        font-size: 2rem;
    }

    input, textarea {
        font-size: 16px;
    }

    form button {
        min-height: 44px;
        -webkit-tap-highlight-color: transparent;
    }
}

/* iPhone specific optimizations */
@media (max-width: 480px) {
    header {
        padding: 0.75rem 0;
    }

    .logo-container {
        gap: 0.5rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .about h2, .contact h2 {
        font-size: 1.75rem;
    }

    .feature-card {
        padding: 1.5rem;
    }
}
