/* Dark Theme Variables */
:root {
    --bg-dark: #121212;
    --bg-card: #1e1e1e;
    --text-primary: #e0e0e0;
    --text-secondary: #a0a0a0;
    --accent: #3498db;
    --accent-light: #5dade2;
    --success: #2ecc71;
    --warning: #f1c40f;
    --danger: #e74c3c;
    --info: #3498db;
    --border: #333;
    --twitter: #1DA1F2;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
}

main {
    flex: 1;
}

h1, h2, h3, h4 {
    color: var(--accent);
    margin-bottom: 1rem;
}

h1 {
    text-align: center;
    font-weight: 600;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-light);
}

/* Header Styles */
header {
    background-color: rgba(0, 0, 0, 0.7);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.site-logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 50px;
    width: auto;
}

/* Navigation Menu */
.main-nav {
    display: flex;
    align-items: center;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
}

.main-nav a {
    color: var(--text-primary);
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
    display: flex;
    align-items: center;
    height: 100%;
}

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

.main-nav a.active {
    color: var(--accent);
    background-color: rgba(52, 152, 219, 0.1);
}

.main-nav .social-link {
    padding: 8px 12px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.twitter-icon {
    color: var(--twitter);
    transition: transform 0.3s ease;
    display: block;
}

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

.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.hamburger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--text-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Add hamburger menu active styles */
.hamburger-menu.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Hero Section */
.hero-section {
    padding: 3rem 1rem;
    text-align: center;
    margin-bottom: 2rem;
    background-color: var(--bg-card);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.tagline {
    font-size: 1.4rem;
    color: var(--accent);
    font-weight: 500;
    margin: -0.5rem 0 1.5rem;
    font-style: italic;
    letter-spacing: 0.5px;
}

.description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.description p {
    margin-bottom: 1rem;
}

/* Games Section */
.games-section {
    margin-bottom: 3rem;
}

.game-banners {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.game-banner {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.game-banner a {
    text-decoration: none;
    color: white;
    display: block;
    width: 100%;
    height: 100%;
}

/* New Banner Styles */
.banner-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 2rem;
    min-height: 200px;
}

.banner-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 2.5rem;
}

.game-svg-icon {
    width: 80px;
    height: 80px;
    stroke: white;
    stroke-width: 1.5;
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.game-banner:hover .game-svg-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.3));
}

.lottery-banner .game-svg-icon {
    stroke: #f1c40f;
    fill: rgba(241, 196, 15, 0.1);
}

.race-banner .game-svg-icon {
    stroke: #f15a24;
    fill: rgba(241, 90, 36, 0.1);
}

.slots-banner .game-svg-icon {
    stroke: #39b54a;
    fill: rgba(57, 181, 74, 0.1);
}

.dice-banner .game-svg-icon {
    stroke: #7953f5;
    fill: rgba(121, 83, 245, 0.1);
}

.flip-banner .game-svg-icon {
    stroke: #1a8fe3;
    fill: rgba(26, 143, 227, 0.1);
}

.banner-text {
    flex: 1;
}

.banner-text h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.banner-text p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 1.2rem;
}

.play-button {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease;
    display: inline-block;
    margin-top: 0.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.lottery-banner .play-button {
    border-color: rgba(241, 196, 15, 0.3);
    color: #f1c40f;
}

.race-banner .play-button {
    border-color: rgba(241, 90, 36, 0.3);
    color: #f15a24;
}

.slots-banner .play-button {
    border-color: rgba(57, 181, 74, 0.3);
    color: #39b54a;
}

.dice-banner .play-button {
    border-color: rgba(121, 83, 245, 0.3);
    color: #7953f5;
}

.flip-banner .play-button {
    border-color: rgba(26, 143, 227, 0.3);
    color: #1a8fe3;
}

.play-button:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

/* Banner Colors */
.lottery-banner {
    background-color: #3a3a3a;
    background-image: linear-gradient(135deg, #3a3a3a, #2f2f2f);
    border-left: 4px solid #f1c40f;
}

.race-banner {
    background-color: #3a3a3a;
    background-image: linear-gradient(135deg, #3a3a3a, #2f2f2f);
    border-left: 4px solid #f15a24;
}

.slots-banner {
    background-color: #3a3a3a;
    background-image: linear-gradient(135deg, #3a3a3a, #2f2f2f);
    border-left: 4px solid #39b54a;
}

.dice-banner {
    background-color: #3a3a3a;
    background-image: linear-gradient(135deg, #3a3a3a, #2f2f2f);
    border-left: 4px solid #7953f5;
}

.flip-banner {
    background-color: #3a3a3a;
    background-image: linear-gradient(135deg, #3a3a3a, #2f2f2f);
    border-left: 4px solid #1a8fe3;
}

.lottery-banner:hover {
    border-left-color: #f8d84a;
}

.race-banner:hover {
    border-left-color: #f47c51;
}

.slots-banner:hover {
    border-left-color: #5ad36a;
}

.dice-banner:hover {
    border-left-color: #9a7df8;
}

.flip-banner:hover {
    border-left-color: #4aa3e8;
}

/* Features Section */
.features-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: var(--bg-card);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.08);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature h3 {
    margin-bottom: 0.5rem;
}

.feature p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Footer */
.site-footer {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 2rem 0;
    margin-top: auto;
}

.footer-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-footer p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.footer-links a {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-links .social-link {
    color: var(--text-secondary);
    padding: 5px;
    display: flex;
    align-items: center;
}

.footer-links .social-link:hover {
    color: var(--twitter);
}

/* Cookie Consent Styles */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(18, 18, 18, 0.95);
    z-index: 1000;
    padding: 15px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    display: none;
}

.cookie-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 15px;
    background-color: var(--bg-card);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.cookie-content h3 {
    margin: 0;
    color: var(--accent);
    font-size: 1.3rem;
    font-weight: 600;
}

.toggle-details {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.toggle-details .arrow {
    transition: transform 0.3s ease;
}

.toggle-details:hover {
    color: var(--text-primary);
}

.cookie-content > p {
    margin-bottom: 15px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.cookie-details {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 15px;
    transition: max-height 0.3s ease-out, opacity 0.3s ease;
}

.cookie-details.collapsed {
    display: none;
}

.cookie-type {
    margin-bottom: 15px;
}

.cookie-type h4 {
    color: var(--text-primary);
    margin-bottom: 5px;
    font-size: 1.1rem;
    font-weight: 500;
}

.cookie-type p {
    color: var(--text-secondary);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.cookie-type ul {
    list-style-type: none;
    padding-left: 0;
    margin-left: 0;
}

.cookie-type li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 5px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.cookie-type li:before {
    content: "•";
    position: absolute;
    left: 5px;
    color: var(--accent);
}

.cookie-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.cookie-btn {
    border: none;
    border-radius: 4px;
    padding: 8px 15px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-btn.accept {
    background-color: var(--accent);
    color: white;
}

.cookie-btn.accept:hover {
    background-color: var(--accent-light);
}

.cookie-btn.reject {
    background-color: transparent;
    border: 1px solid var(--text-secondary);
    color: var(--text-secondary);
}

.cookie-btn.reject:hover {
    border-color: var(--text-primary);
    color: var(--text-primary);
}

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

.modal-content {
    max-width: 450px;
    width: 90%;
    background-color: var(--bg-card);
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.modal-content h4 {
    color: var(--danger);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.modal-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.modal-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.modal-btn {
    border: none;
    border-radius: 4px;
    padding: 8px 15px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.modal-btn.confirm {
    background-color: var(--danger);
    color: white;
}

.modal-btn.confirm:hover {
    background-color: #c0392b;
}

.modal-btn.cancel {
    background-color: transparent;
    border: 1px solid var(--text-secondary);
    color: var(--text-secondary);
}

.modal-btn.cancel:hover {
    border-color: var(--text-primary);
    color: var(--text-primary);
}

/* Notification Toast */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    max-width: 350px;
    background-color: var(--accent);
    color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transform: translateX(120%);
    transition: transform 0.3s ease;
    opacity: 0;
}

.notification.active {
    transform: translateX(0);
    opacity: 1;
}

.notification-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.notification-message {
    flex: 1;
    font-size: 0.95rem;
}

.notification-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    margin-left: 10px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.notification-close:hover {
    opacity: 1;
}

@keyframes slideIn {
    from {
        transform: translateX(120%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .banner-content {
        padding: 1.5rem;
    }
    
    .banner-icon {
        margin-right: 2rem;
    }
    
    .game-svg-icon {
        width: 70px;
        height: 70px;
    }
    
    .banner-text h3 {
        font-size: 1.8rem;
    }
    
    .banner-text p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 1rem;
        padding: 10px;
    }
    
    .hamburger-menu {
        display: flex;
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        z-index: 102;
    }
    
    .main-nav {
        width: 100%;
    }
    
    .nav-menu {
        display: none !important;
        flex-direction: column;
        width: 100%;
        text-align: center;
        gap: 0;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 101;
    }
    
    .nav-menu.active {
        display: flex !important;
        background-color: var(--bg-dark);
        border-radius: 4px;
        margin-top: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }
    
    .main-nav a {
        display: flex;
        justify-content: center;
        padding: 1rem;
    }

    .banner-content {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
    }
    
    .banner-icon {
        margin-right: 0;
        margin-bottom: 1.5rem;
    }
    
    .game-svg-icon {
        width: 100px;
        height: 100px;
    }
    
    .banner-text h3 {
        font-size: 1.8rem;
    }
    
    .banner-text p {
        font-size: 1.1rem;
        margin-bottom: 0;
    }
    
    .play-button {
        display: none;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
        text-align: center;
    }
    
    .modal-buttons {
        flex-direction: column;
    }
    
    .modal-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature {
        padding: 1rem;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
    
    .game-svg-icon {
        width: 80px;
        height: 80px;
    }
    
    .banner-text h3 {
        font-size: 1.5rem;
    }
    
    .banner-text p {
        font-size: 0.95rem;
    }
    
    .cookie-content {
        padding: 10px;
    }
    
    .notification {
        max-width: calc(100% - 40px);
        top: 10px;
        right: 10px;
        left: 10px;
    }
} 