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

body {
    font-family: 'Arial', sans-serif;
    background: #1a1a2e;
    color: #ffffff;
    line-height: 1.6;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: #1a1a2e;
}

.nav {
    background: #1a1a2e;
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    width: 40px;
    height: 40px;
}

.brand-text {
    color: #7ED321;
    font-size: 24px;
    font-weight: bold;
}

.nav-actions {
    display: flex;
    gap: 15px;
}

.btn-login {
    background: transparent;
    border: 1px solid #555;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: #555;
}

.btn-signup {
    background: #7ED321;
    color: #1a1a2e;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-signup:hover {
    background: #6bc91d;
}

/* Categories Navigation */
.categories-nav {
    background: #0066cc;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.categories-nav.sticky {
    position: fixed;
    top: 70px;
    width: 100%;
    z-index: 999;
}

.categories-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    padding: 0 20px;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    text-decoration: none;
    padding: 5px 15px;
    border-radius: 15px;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.category-item.active,
.category-item:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
}

.category-item svg {
    width: 20px;
    height: 20px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://via.placeholder.com/1920x600/1a1a2e/7ED321?text=Easter+Hunt+Background');
    background-size: cover;
    background-position: center;
    padding: 150px 20px 50px;
    text-align: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 53, 0.2);
    color: #ff6b35;
    padding: 8px 15px;
    border-radius: 15px;
    font-size: 14px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 48px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-prize {
    font-size: 32px;
    color: #7ED321;
    font-weight: bold;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #7ED321;
}

/* Registration Section */
.registration-section {
    background: #2a2a3e;
    padding: 40px 20px;
    border-radius: 20px;
    margin: -30px 20px 0;
    position: relative;
    z-index: 10;
}

.registration-container {
    max-width: 400px;
    margin: 0 auto;
}

.registration-title {
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
}

.registration-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-input {
    width: 100%;
    background: #3a3a4e;
    border: none;
    padding: 15px 50px 15px 15px;
    border-radius: 10px;
    color: #ffffff;
    font-size: 16px;
}

.form-input::placeholder {
    color: #888;
}

.form-input:focus {
    outline: none;
    background: #4a4a5e;
}

.input-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #ccc;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 4px;
}

.form-checkbox a {
    color: #7ED321;
    text-decoration: none;
}

.form-checkbox a:hover {
    text-decoration: underline;
}

.btn-register {
    background: #7ED321;
    color: #1a1a2e;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.btn-register:hover {
    background: #6bc91d;
}

.btn-badge {
    position: absolute;
    top: -5px;
    right: 10px;
    background: #ff6b35;
    color: #ffffff;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 10px;
}

.login-link {
    text-align: center;
    color: #ccc;
    margin-top: 20px;
}

.login-link a {
    color: #7ED321;
    text-decoration: none;
}

.login-link a:hover {
    text-decoration: underline;
}

.features-grid {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #444;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #7ED321;
    font-size: 14px;
    font-weight: bold;
}

.feature-item svg {
    width: 24px;
    height: 24px;
}

/* Winners Section */
.winners-section {
    background: #0066cc;
    padding: 30px 20px;
    margin-top: 40px;
}

.winners-title {
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.winners-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.winner-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
}

.winner-avatar {
    width: 40px;
    height: 40px;
    background: #7ED321;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a2e;
    font-weight: bold;
}

.winner-info {
    flex: 1;
}

.winner-name {
    font-weight: bold;
    margin-bottom: 2px;
}

.winner-game {
    color: #ccc;
    font-size: 14px;
}

.winner-amount {
    color: #7ED321;
    font-weight: bold;
    font-size: 18px;
}

/* Games Section */
.games-section {
    padding: 50px 20px;
}

.games-container {
    max-width: 1200px;
    margin: 0 auto;
}

.games-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.games-title {
    font-size: 28px;
    font-weight: bold;
    color: #ffffff;
}

.view-all {
    color: #7ED321;
    text-decoration: none;
    font-weight: bold;
}

.view-all:hover {
    text-decoration: underline;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.game-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.game-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.btn-play {
    background: #7ED321;
    color: #1a1a2e;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-play:hover {
    background: #6bc91d;
}

/* SEO Content */
.seo-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
    color: #ffffff;
}

.content-container h1 {
    font-size: 36px;
    color: #7ED321;
    margin-bottom: 30px;
    text-align: center;
}

.content-container h2 {
    font-size: 28px;
    color: #ffffff;
    margin: 40px 0 20px;
    border-left: 4px solid #7ED321;
    padding-left: 20px;
}

.content-container h3 {
    font-size: 24px;
    color: #ccc;
    margin: 30px 0 15px;
}

.content-container p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #ccc;
}

.content-container table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: #2a2a3e;
    border-radius: 10px;
    overflow: hidden;
}

.content-container table th,
.content-container table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #444;
}

.content-container table th {
    background: #7ED321;
    color: #1a1a2e;
    font-weight: bold;
}

.content-container table td {
    color: #ffffff;
}

.content-container table tr:last-child td {
    border-bottom: none;
}

.content-container ol,
.content-container ul {
    margin: 20px 0;
    padding-left: 30px;
}

.content-container ol li,
.content-container ul li {
    margin-bottom: 10px;
    color: #ccc;
    line-height: 1.6;
}

.content-container a {
    color: #7ED321;
    text-decoration: none;
}

.content-container a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #1a1a2e;
    padding: 50px 20px;
    border-top: 1px solid #333;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    width: 40px;
    height: 40px;
}

.footer-badge {
    background: #0066cc;
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    text-align: center;
    line-height: 1.2;
}

.footer-language {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #ccc;
}

.footer-language select {
    background: #2a2a3e;
    border: 1px solid #444;
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 5px;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    color: #ccc;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: scale(1.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-heading {
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 18px;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #7ED321;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.footer-logo-text {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ccc;
}

.btn-bonus {
    background: #7ED321;
    color: #1a1a2e;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    position: relative;
}

.btn-bonus:hover {
    background: #6bc91d;
}

.bonus-badge {
    position: absolute;
    top: -5px;
    right: 10px;
    background: #ff6b35;
    color: #ffffff;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 15px;
    }
    
    .categories-container {
        padding: 0 15px;
        overflow-x: auto;
        white-space: nowrap;
    }
    
    .category-item {
        flex-shrink: 0;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-prize {
        font-size: 24px;
    }
    
    .registration-section {
        margin: -20px 15px 0;
        padding: 30px 20px;
    }
    
    .features-grid {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .content-container h1 {
        font-size: 28px;
    }
    
    .content-container h2 {
        font-size: 24px;
    }
    
    .content-container table {
        font-size: 14px;
    }
    
    .content-container table th,
    .content-container table td {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 120px 15px 40px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .hero-prize {
        font-size: 20px;
    }
    
    .registration-title {
        font-size: 20px;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}