@font-face {
  font-family: "Roboto";
  src: url(/lotto-hu/assets/Roboto/Roboto-Regular.ttf);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif !important;
}

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 50%, #1976d2 100%);
    color: white;
    line-height: 1.6;
}

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

/* Age Verification Modal */
.modal {
    display: flex;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    border: 2px solid #ff6b35;
}

.age-verification {
    color: white;
}

.age-icon {
    font-size: 48px;
    font-weight: bold;
    color: #ff6b35;
    margin-bottom: 20px;
    border: 3px solid #ff6b35;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.age-verification h2 {
    color: #ff6b35;
    margin-bottom: 20px;
    font-size: 24px;
}

.age-verification p {
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.5;
}

.age-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-yes, .btn-no {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-yes {
    background: #4caf50;
    color: white;
}

.btn-yes:hover {
    background: #45a049;
    transform: translateY(-2px);
}

.btn-no {
    background: #f44336;
    color: white;
}

.btn-no:hover {
    background: #da190b;
    transform: translateY(-2px);
}

/* Header */
.header {
    text-align: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.company-name {
    font-size: 18px;
    font-weight: bold;
    color: #ff6b35;
    letter-spacing: 2px;
}

/* Hero Section */
.hero {
    background-image: url('../images/hero.webp');
    background-position: center;
    background-size: cover;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    position: relative;
}

.hero-text {
    flex: 1;
    z-index: 2;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #ff6b35;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #ffffff;
}

.cta-button {
    background: linear-gradient(45deg, #4caf50, #66bb6a);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
    background: linear-gradient(45deg, #45a049, #5cb85c);
}

/* Lottery Balls */
.lottery-balls-left, .lottery-balls-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.lottery-balls-left {
    left: 50px;
}

.lottery-balls-right {
    right: 50px;
}

.ball {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    animation: float 3s ease-in-out infinite;
}

.ball-orange {
    background: linear-gradient(45deg, #ff6b35, #ff8a50);
}

.ball-purple {
    background: linear-gradient(45deg, #9c27b0, #ba68c8);
}

.ball-green {
    background: linear-gradient(45deg, #4caf50, #66bb6a);
}

.ball-red {
    background: linear-gradient(45deg, #f44336, #ef5350);
}

.ball-number {
    background: linear-gradient(45deg, #2e7d32, #4caf50);
    color: white;
    font-size: 24px;
}

@keyframes float {
    0, 100% { 
        transform: translateY(0px); 
    }
    50% { 
        transform: translateY(-10px); 
    }
}

/* Winners Section */
.winners {
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.2);
    text-align: center;
}

.winners h2 {
    color: #ff6b35;
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: bold;
}

.winners p {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 16px;
    line-height: 1.6;
}

/* Games Section */
.games {
    padding: 60px 0;
}

.games h2 {
    text-align: center;
    color: #ff6b35;
    font-size: 28px;
    margin-bottom: 40px;
    font-weight: bold;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.game-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.game-card h3 {
    color: #ff6b35;
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: bold;
}

.game-card p {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.5;
}

.game-details {
    color: #e3f2fd;
    font-size: 13px;
}

.game-odds {
    color: #e8f5e8;
    font-size: 13px;
}

.play-button {
    background: linear-gradient(45deg, #4caf50, #66bb6a);
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.play-button:hover {
    background: linear-gradient(45deg, #45a049, #5cb85c);
    transform: translateY(-2px);
}

/* Results Section */
.results {
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.2);
}

.results h2 {
    text-align: center;
    color: #ff6b35;
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: bold;
}

.results > p {
    text-align: center;
    margin-bottom: 40px;
}

.results-grid {
    display: grid;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.result-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.result-card h4 {
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.4;
}

.lottery-numbers {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.number-ball {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.number-ball.yellow {
    background: linear-gradient(45deg, #ffc107, #ffeb3b);
    color: #333;
}

.number-ball.blue {
    background: linear-gradient(45deg, #2196f3, #64b5f6);
}

.number-ball.red {
    background: linear-gradient(45deg, #f44336, #ef5350);
}

.number-ball.purple {
    background: linear-gradient(45deg, #9c27b0, #ba68c8);
}

.number-ball.orange {
    background: linear-gradient(45deg, #ff6b35, #ff8a50);
}

.number-ball.green {
    background: linear-gradient(45deg, #4caf50, #66bb6a);
}

/* Responsible Gaming Section */
.responsible-gaming {
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.3);
}

.responsible-gaming h2 {
    text-align: center;
    color: #ff6b35;
    font-size: 28px;
    margin-bottom: 30px;
    font-weight: bold;
}

.responsible-gaming p {
    margin-bottom: 20px;
    line-height: 1.6;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

.responsible-gaming a {
    color: #4caf50;
    text-decoration: none;
}

.responsible-gaming a:hover {
    text-decoration: underline;
}

.responsible-gaming-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin: 40px auto;
    max-width: 900px;
}

.section-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.section-card h3 {
    color: #ff6b35;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: bold;
}

.section-card p {
    font-size: 14px;
    margin-bottom: 15px;
}

.link-button {
    display: inline-block;
    background: linear-gradient(45deg, #4caf50, #66bb6a);
    color: white;
    padding: 8px 20px;
    border-radius: 15px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.link-button:hover {
    background: linear-gradient(45deg, #45a049, #5cb85c);
    transform: translateY(-2px);
}

.support-organizations {
    margin: 40px 0;
    text-align: center;
}

.support-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.age-badge {
    background: #ff6b35;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    border: 2px solid white;
}

.support-logo {
    height: 40px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.support-logo:hover {
    opacity: 1;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.4);
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-content {
    text-align: center;
}

.footer-content > p {
    font-size: 14px;
    margin-bottom: 25px;
    font-weight: bold;
    color: #ff6b35;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #4caf50;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #66bb6a;
    text-decoration: underline;
}

.support-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.support-links a {
    color: #e3f2fd;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.support-links a:hover {
    color: #4caf50;
    text-decoration: underline;
}

.contact-info {
    font-size: 14px;
    color: #e3f2fd;
}

.contact-info a {
    color: #4caf50;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Policy Pages */
.policy-page {
    padding: 60px 0;
    min-height: 100vh;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.policy-content h1 {
    color: #ff6b35;
    text-align: center;
    margin-bottom: 30px;
    font-size: 32px;
}

.policy-content h2 {
    color: #ff6b35;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 20px;
}

.policy-content h3 {
    color: #ff6b35;
    margin-top: 25px;
    margin-bottom: 10px;
    font-size: 18px;
}

.policy-content p, .policy-content li {
    margin-bottom: 15px;
    line-height: 1.6;
    text-align: justify;
}

.policy-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.policy-content a {
    color: #4caf50;
    text-decoration: none;
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table th,
.cookie-table td {
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px;
    text-align: left;
}

.cookie-table th {
    background: rgba(255, 107, 53, 0.2);
    color: #ff6b35;
    font-weight: bold;
}

.back-link {
    text-align: center;
    margin-top: 30px;
}

.back-link a {
    background: linear-gradient(45deg, #4caf50, #66bb6a);
    color: white;
    padding: 12px 25px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.back-link a:hover {
    background: linear-gradient(45deg, #45a049, #5cb85c);
    transform: translateY(-2px);
}

/* Registration Form */
.registration-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.registration-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    max-width: 500px;
    width: 100%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.registration-form h1 {
    color: #ff6b35;
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
    font-weight: bold;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 16px;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #4caf50;
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.3);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    flex-shrink: 0;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.4;
    flex: 1;
}

.submit-button {
    width: 100%;
    background: linear-gradient(45deg, #4caf50, #66bb6a);
    color: white;
    border: none;
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: linear-gradient(45deg, #45a049, #5cb85c);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .responsible-gaming-sections {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .lottery-balls-left, 
    .lottery-balls-right {
        display: none;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .game-card {
        padding: 20px;
    }
    
    .responsible-gaming-sections {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .support-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .lottery-numbers {
        gap: 8px;
    }
    
    .number-ball {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
    
    .support-logos {
        gap: 20px;
    }
    
    .modal-content {
        padding: 30px 20px;
    }
    
    .age-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .policy-content {
        padding: 30px 20px;
    }
    
    .registration-form {
        padding: 30px 20px;
    }
    
    .hero-content {
        flex-direction: column;
    }
    
    .hero-text {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero h1 {
        font-size: 24px;
    }
    
    .cta-button {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .ball {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
    
    .games, 
    .winners, 
    .results, 
    .responsible-gaming {
        padding: 40px 0;
    }
    
    .section-card {
        padding: 20px;
    }
    
    .result-card {
        padding: 20px;
    }
    
    .policy-content {
        padding: 20px 15px;
    }
    
    .registration-form {
        padding: 20px 15px;
    }
    
    .modal-content {
        padding: 20px 15px;
        width: 95%;
    }
    
    .age-icon {
        width: 60px;
        height: 60px;
        font-size: 36px;
    }
    
    .form-group input,
    .form-group select {
        font-size: 14px;
        padding: 10px;
    }
    
    .cookie-table {
        font-size: 12px;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 8px;
    }
}