* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    color: #e0e0e0;
    line-height: 1.6;
    min-height: 100vh;
}

.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    animation: twinkle 3s infinite;
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

header {
    padding: 30px 0;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    font-family: 'OCR A';
    font-size: 40px;
    font-weight: 700;
    color: #00ffff;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s;
    position: relative;
}

    nav a:hover {
        color: #00ffff;
        text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
    }

    nav a::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: #00ffff;
        transition: width 0.3s;
    }

    nav a:hover::after {
        width: 100%;
    }

.hero {
    padding: 80px 0;
    text-align: center;
}

    .hero h1 {        
        font-size: 48px;
        margin-bottom: 20px;
        color: #00ffff;
        text-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
    }

    .hero p {
        font-size: 20px;
        color: #b0b0b0;
        max-width: 700px;
        margin: 0 auto;
    }

.section-title {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
    color: #00ffff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: 60px 0;
}

.blog-card {
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid rgba(0, 255, 255, 0.3);
}

.blog-content {
    padding: 30px;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: #00ffff;
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.blog-category {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(0, 255, 255, 0.2);
    color: #00ffff;
    border-radius: 20px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.blog-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #ffffff;
}

.blog-card p {
    color: #b0b0b0;
    margin-bottom: 15px;
}

.blog-meta {
    font-size: 14px;
    color: #808080;
    margin-bottom: 20px;
}

.read-more {
    color: #00ffff;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s;
}

    .read-more:hover {
        gap: 10px;
        text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
    }

video {
    width: 100%;
    height: auto;
    display: block;
}


.newsletter {
    background: rgba(26, 26, 46, 0.8);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 8px;
    padding: 50px;
    margin: 60px 0;
    text-align: center;
    backdrop-filter: blur(10px);
}

    .newsletter h2 {
        font-size: 32px;
        margin-bottom: 15px;
        color: #00ffff;
    }

    .newsletter p {
        color: #b0b0b0;
        margin-bottom: 30px;
        font-size: 18px;
    }

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

    .newsletter-form input {
        flex: 1;
        min-width: 250px;
        padding: 15px 20px;
        background: rgba(10, 10, 10, 0.8);
        border: 1px solid rgba(0, 255, 255, 0.3);
        border-radius: 4px;
        color: #ffffff;
        font-size: 16px;
        outline: none;
        transition: all 0.3s;
    }

        .newsletter-form input:focus {
            border-color: #00ffff;
            box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
        }

    .newsletter-form button {
        padding: 15px 40px;
        background: #00ffff;
        border: none;
        border-radius: 4px;
        color: #0a0a0a;
        font-size: 16px;
        font-weight: 700;
        text-transform: uppercase;
        cursor: pointer;
        transition: all 0.3s;
    }

        .newsletter-form button:hover {
            background: #00cccc;
            box-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
            transform: translateY(-2px);
        }

footer {
    border-top: 1px solid rgba(0, 255, 255, 0.2);
    padding: 30px 0;
    text-align: center;
    color: #808080;
    margin-top: 60px;
    background: rgba(10, 10, 10, 0.8);
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .newsletter {
        padding: 30px 20px;
    }

    .newsletter-form {
        flex-direction: column;
    }
}
