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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

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

.site-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1,
.logo img {
    font-size: 28px;
    font-weight: bold;
    color: white;
    text-decoration: none;
}

.logo img {
    height: 40px;
    width: auto;
    display: block;
}

.logo a {
    text-decoration: none;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 6px 10px;
    border-radius: 5px;
    font-size: 13px;
    white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
    background-color: rgba(255, 255, 255, 0.2);
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

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

.hero-image {
    margin-top: 40px;
    text-align: center;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background-color: #ff6b6b;
    color: white;
}

.btn-primary:hover {
    background-color: #ee5a5a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.btn-secondary {
    background-color: white;
    color: #667eea;
}

.btn-secondary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid #667eea;
    color: #667eea;
}

.btn-outline:hover {
    background-color: #667eea;
    color: white;
}

.btn-full {
    width: 100%;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #333;
}

.features {
    padding: 80px 0;
    background-color: white;
}

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

.feature-card {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.feature-icon {
    font-size: 48px;
    color: #667eea;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

.services {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #667eea;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
}

.cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.login-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.login-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.login-box {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.login-box h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #667eea;
}

.login-box > p {
    color: #666;
    margin-bottom: 30px;
}

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

.login-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.login-form input {
    width: 100%;
    padding: 12px 15px;
    padding-right: 45px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.login-form input:focus {
    outline: none;
    border-color: #667eea;
}

.login-form .form-group i {
    position: absolute;
    right: 15px;
    top: 42px;
    color: #999;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
}

.forgot-password {
    color: #667eea;
    text-decoration: none;
}

.forgot-password:hover {
    text-decoration: underline;
}

.login-divider {
    text-align: center;
    margin: 30px 0;
    position: relative;
}

.login-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #ddd;
}

.login-divider span {
    background-color: white;
    padding: 0 20px;
    position: relative;
    color: #999;
}

.social-login {
    text-align: center;
}

.social-login p {
    margin-bottom: 15px;
    color: #666;
}

.social-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-facebook {
    background-color: #1877f2;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-google {
    background-color: #db4437;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.register-link {
    text-align: center;
    margin-top: 20px;
}

.register-link a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.login-info {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    border-radius: 15px;
}

.login-info h3 {
    font-size: 24px;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 24px;
    margin-top: 5px;
}

.info-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.info-item p {
    opacity: 0.9;
}

.login-tips {
    padding: 80px 0;
    background-color: white;
}

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

.tip-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.tip-card h3 {
    color: #667eea;
    margin-bottom: 10px;
}

.tip-card p {
    color: #666;
}

.app-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.app-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.app-hero-image {
    text-align: center;
}

.phone-mockup {
    max-width: 300px;
    margin: 0 auto;
}

.phone-screen {
    width: 200px;
    height: 400px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 30px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.phone-screen::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

.phone-screen::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

.app-screen-content {
    padding: 20px;
    text-align: center;
}

.app-header {
    margin-bottom: 20px;
}

.app-header h3 {
    color: white;
    font-size: 24px;
    margin-bottom: 10px;
}

.app-lottery-numbers {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

.lottery-ball {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
}

.app-balance {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 10px;
    margin-top: 20px;
}

.app-balance p {
    color: white;
    font-size: 14px;
    margin-bottom: 5px;
}

.app-balance h4 {
    color: white;
    font-size: 24px;
    margin: 0;
}

.app-hero-content h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.app-hero-content > p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.app-download-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.btn-app-store,
.btn-google-play {
    background-color: white;
    color: #333;
    padding: 12px 25px;
    border-radius: 10px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
}

.btn-app-store:hover,
.btn-google-play:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-app-store i,
.btn-google-play i {
    font-size: 28px;
}

.btn-app-store div,
.btn-google-play div {
    display: flex;
    flex-direction: column;
}

.btn-app-store span,
.btn-google-play span {
    font-size: 12px;
}

.btn-app-store strong,
.btn-google-play strong {
    font-size: 16px;
}

.app-qr-code {
    text-align: center;
}

.app-qr-code img {
    width: 150px;
    height: 150px;
    background-color: white;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.app-qr-code p {
    font-size: 14px;
    opacity: 0.9;
}

.app-features {
    padding: 80px 0;
    background-color: white;
}

.app-benefits {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.benefits-content {
    max-width: 800px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.benefit-number {
    font-size: 48px;
    font-weight: bold;
    color: #667eea;
    line-height: 1;
    min-width: 60px;
}

.benefit-text h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #333;
}

.benefit-text p {
    color: #666;
}

.app-download-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.mobile-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.mobile-hero h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.mobile-hero > p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.mobile-devices {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.device {
    text-align: center;
}

.device i {
    font-size: 80px;
    margin-bottom: 10px;
}

.device p {
    font-size: 18px;
    font-weight: 600;
}

.mobile-features {
    padding: 80px 0;
    background-color: white;
}

.mobile-comparison {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.comparison-table {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.comparison-table th {
    background-color: #667eea;
    color: white;
    font-weight: 600;
}

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

.text-success {
    color: #28a745;
}

.text-danger {
    color: #dc3545;
}

.mobile-tips {
    padding: 80px 0;
    background-color: white;
}

.mobile-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.io-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.io-hero h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.io-hero > p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.io-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

.io-features {
    padding: 80px 0;
    background-color: white;
}

.io-technology {
    padding: 80px 0;
    background-color: #f9f9f9;
}

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

.tech-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tech-card h3 {
    color: #667eea;
    margin-bottom: 20px;
    font-size: 20px;
}

.tech-card ul {
    list-style: none;
}

.tech-card li {
    padding: 8px 0;
    color: #666;
    border-bottom: 1px solid #eee;
}

.tech-card li:last-child {
    border-bottom: none;
}

.io-benefits {
    padding: 80px 0;
    background-color: white;
}

.benefits-list {
    max-width: 800px;
    margin: 0 auto;
}

.benefits-list .benefit-item {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.benefits-list .benefit-icon {
    color: #28a745;
    font-size: 28px;
}

.io-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.xoso-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.xoso-hero h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.xoso-hero > p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.lottery-types {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.lottery-type {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    min-width: 200px;
}

.type-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.lottery-type h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.lottery-type p {
    opacity: 0.9;
}

.xoso-features {
    padding: 80px 0;
    background-color: white;
}

.xoso-services {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.service-card ul {
    list-style: none;
    margin-bottom: 20px;
}

.service-card li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 25px;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.xoso-guide {
    padding: 80px 0;
    background-color: white;
}

.guide-steps {
    max-width: 800px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.step-content p {
    color: #666;
}

.xoso-results {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.result-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.result-header h3 {
    color: #667eea;
    font-size: 20px;
}

.result-date {
    color: #999;
    font-size: 14px;
}

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

.lottery-ball {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
}

.results-cta {
    text-align: center;
}

.xoso-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.faq-hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.faq-hero h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.faq-hero > p {
    font-size: 18px;
    opacity: 0.9;
}

.faq-content {
    padding: 80px 0;
    background-color: white;
}

.faq-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.faq-category-btn {
    padding: 10px 25px;
    border: 2px solid #667eea;
    background: transparent;
    color: #667eea;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-category-btn:hover,
.faq-category-btn.active {
    background: #667eea;
    color: white;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #f9f9f9;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f0f0f0;
}

.faq-question h3 {
    font-size: 18px;
    color: #333;
    margin: 0;
}

.faq-question i {
    color: #667eea;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer > div {
    padding: 0 25px 25px 25px;
}

.faq-answer p,
.faq-answer ul,
.faq-answer ol {
    color: #666;
    line-height: 1.8;
}

.faq-answer ul,
.faq-answer ol {
    margin-left: 20px;
}

.faq-answer li {
    margin-bottom: 8px;
}

.faq-contact {
    padding: 80px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.faq-contact h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #333;
}

.faq-contact > p {
    color: #666;
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.contact-method {
    text-align: center;
}

.contact-method i {
    font-size: 48px;
    color: #667eea;
    margin-bottom: 15px;
}

.contact-method h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.contact-method p {
    color: #666;
}

.contact-hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.contact-hero h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.contact-hero > p {
    font-size: 18px;
    opacity: 0.9;
}

.contact-content {
    padding: 80px 0;
    background-color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #667eea;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #333;
}

.contact-details p {
    color: #666;
    margin-bottom: 10px;
}

.contact-form-section h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #667eea;
}

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

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #667eea;
}

.contact-social {
    padding: 80px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.contact-social h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #333;
}

.contact-social > p {
    color: #666;
    margin-bottom: 40px;
}

.social-links-large {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-link {
    padding: 20px 30px;
    border-radius: 10px;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px);
}

.social-link.facebook {
    background-color: #1877f2;
}

.social-link.twitter {
    background-color: #1da1f2;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.telegram {
    background-color: #0088cc;
}

.social-link.youtube {
    background-color: #ff0000;
}

.contact-hours {
    padding: 80px 0;
    background-color: white;
}

.contact-hours h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #333;
    text-align: center;
}

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

.hours-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.hours-card h3 {
    color: #667eea;
    margin-bottom: 15px;
    font-size: 20px;
}

.hours-card p {
    color: #666;
    margin-bottom: 10px;
}

.hours-card i {
    color: #667eea;
    margin-right: 8px;
}

.contact-faq {
    padding: 80px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.contact-faq h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #333;
}

.contact-faq > p {
    color: #666;
    margin-bottom: 30px;
}

.site-footer {
    background-color: #1a1a2e;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #667eea;
}

.footer-section p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

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

.footer-section a:hover {
    color: #667eea;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #667eea;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #999;
}

@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        gap: 15px;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .mobile-menu-btn {
        display: block;
        position: absolute;
        right: 20px;
        top: 20px;
    }

    .main-nav {
        display: none;
    }

    .main-nav.active {
        display: block;
    }

    .hero-content h2 {
        font-size: 32px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .login-container {
        grid-template-columns: 1fr;
    }

    .app-hero-content {
        grid-template-columns: 1fr;
    }

    .app-download-buttons {
        flex-direction: column;
    }

    .mobile-devices {
        flex-direction: column;
        gap: 30px;
    }

    .io-stats {
        flex-direction: column;
        gap: 30px;
    }

    .lottery-types {
        flex-direction: column;
        gap: 20px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-methods {
        flex-direction: column;
        gap: 30px;
    }

    .social-links-large {
        flex-direction: column;
    }

    .faq-categories {
        flex-direction: column;
    }
}