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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0a0a0a;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(34, 197, 94, 0.2);
}

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

.nav-logo span {
    color: #22c55e;
    font-weight: 700;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #22c55e;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #22c55e;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #22c55e;
    margin: 3px 0;
    transition: 0.3s;
}

/* Article Header */
.article-header {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.article-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(34, 197, 94, 0.1) 0%, transparent 50%);
}

.article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.article-category {
    background: #22c55e;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.article-date {
    color: #a3a3a3;
    font-size: 0.9rem;
    margin: 7px 0;
}

.article-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #22c55e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.article-subtitle {
    font-size: 1.4rem;
    color: #a3a3a3;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.article-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
}

.author-title {
    font-size: 0.9rem;
    color: #a3a3a3;
}

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

.btn-primary {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #ffffff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #22c55e;
    border: 2px solid #22c55e;
}

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

.streamer-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.avatar-placeholder {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.3);
}

/* Section Styles */
section {
    padding: 60px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Article Content */
.article-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 60px 0;
}

.article-body {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.article-text {
    max-width: none;
}

.article-text .lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: #d1d5db;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.article-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 2rem 0 1rem 0;
    position: relative;
}

.article-text h2::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    bottom: -8px;
    left: 0;
    border-radius: 2px;
}


.article-text h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #22c55e;
    margin: 1.5rem 0 0.8rem 0;
}

.article-text h4 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #22c55e;
    margin: 1.2rem 0 0.8rem 0;
}

.article-text h5 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #22c55e;
    margin: 1rem 0 0.6rem 0;
}

.article-text p {
    font-size: 1.1rem;
    color: #d1d5db;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.article-quote {
    background: rgba(34, 197, 94, 0.1);
    border-left: 4px solid #22c55e;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 8px;
    font-style: italic;
    font-size: 1.2rem;
    color: #ffffff;
    position: relative;
}

.article-quote::before {
    content: '"';
    font-size: 4rem;
    color: #22c55e;
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: serif;
}

.article-list {
    list-style: none;
    margin: 1.5rem 0;
}

.article-list li {
    color: #d1d5db;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.article-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
}

/* Article Sidebar */
.article-sidebar {
    position: sticky;
    top: 100px;
}

/* Simple highlight for casino card */
#top-casinos {
    transition: all 0.3s ease;
}

#top-casinos:target {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid #22c55e;
}

.sidebar-card {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.sidebar-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #22c55e;
    margin-bottom: 1.5rem;
}

.sidebar-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 8px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #22c55e;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #a3a3a3;
}

.social-links-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link-sidebar {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 8px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
}

.social-link-sidebar:hover {
    background: rgba(34, 197, 94, 0.2);
    transform: translateX(5px);
}

.social-link-sidebar .social-icon {
    font-size: 1.5rem;
    margin-bottom: 0;
}

/* Article Section */
.article-section {
    background: #0a0a0a;
    padding: 60px 0;
}

.article-section-title,
.contest-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: #ffffff;
    position: relative;
}

.article-section-title::after,
.contest-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

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

.article-content-text p {
    font-size: 1.1rem;
    color: #d1d5db;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.article-content-text h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #22c55e;
    margin: 2.5rem 0 1.5rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.feature-item {
    background: rgba(26, 26, 26, 0.8);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(34, 197, 94, 0.2);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: #22c55e;
}

.feature-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #22c55e;
    margin-bottom: 1rem;
}

.feature-item p {
    color: #d1d5db;
    font-size: 1rem;
    line-height: 1.6;
}

/* Contest Styles */
.participation-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(26, 26, 26, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(34, 197, 94, 0.2);
    transition: all 0.3s ease;
    margin-bottom: 0;
}

.step-item:hover {
    border-color: #22c55e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.1);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: #ffffff;
    flex-shrink: 0;
}

.step-content h5 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #22c55e;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #d1d5db;
    line-height: 1.6;
    margin: 0;
}

.prizes-container {
    margin: 1.5rem 0;
    overflow-x: auto;
}

.prizes-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(26, 26, 26, 0.8);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(34, 197, 94, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.prizes-table thead {
    background: rgba(34, 197, 94, 0.2);
}

.prizes-table th {
    padding: 1rem;
    text-align: left;
    color: #22c55e;
    font-weight: 600;
    font-size: 1.1rem;
    border-bottom: 2px solid rgba(34, 197, 94, 0.3);
}

.prizes-table td {
    padding: 1rem;
    color: #d1d5db;
    border-bottom: 1px solid rgba(34, 197, 94, 0.1);
    vertical-align: top;
}

.prizes-table tr:hover {
    background: rgba(34, 197, 94, 0.05);
    transition: background 0.3s ease;
}

.prizes-table td:first-child {
    font-weight: 600;
    color: #ffffff;
}

.rules-section {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(26, 26, 26, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.rules-section h5 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #22c55e;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.rule-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(10, 10, 10, 0.8);
    border-radius: 8px;
    border: 1px solid rgba(34, 197, 94, 0.2);
    transition: all 0.3s ease;
    margin-bottom: 0;
}

.rule-item:hover {
    border-color: #22c55e;
    transform: translateY(-2px);
}

.rule-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.rule-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #22c55e;
    margin-bottom: 0.5rem;
}

.rule-content p {
    color: #d1d5db;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-text h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #22c55e;
    margin-bottom: 1rem;
}

.facts-list {
    list-style: none;
    margin-bottom: 2rem;
}

.facts-list li {
    color: #d1d5db;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.facts-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
}

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

.stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.stat h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #22c55e;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #a3a3a3;
    font-weight: 500;
}

.image-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
}

/* Casino Image Styles */
.article-image {
    margin: 2rem 0;
    text-align: center;
}

.casino-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(34, 197, 94, 0.2);
    transition: all 0.3s ease;
}

.casino-image:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(34, 197, 94, 0.2);
    border-color: #22c55e;
}

/* Streams Section */
.streams {
    background: #0a0a0a;
}

.streams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.stream-card {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(34, 197, 94, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stream-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(34, 197, 94, 0.2);
}

.stream-thumbnail {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.live-indicator {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ef4444;
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

.thumbnail-placeholder {
    color: #a3a3a3;
    font-weight: 500;
}

.stream-info {
    padding: 1.5rem;
}

.stream-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.stream-info p {
    color: #a3a3a3;
    margin-bottom: 1rem;
}

.stream-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.viewers {
    color: #22c55e;
    font-weight: 600;
}

.category {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
}

/* Social Section */
.social {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.social-link {
    background: rgba(26, 26, 26, 0.8);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    border: 1px solid rgba(34, 197, 94, 0.2);
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px);
    border-color: #22c55e;
    box-shadow: 0 15px 35px rgba(34, 197, 94, 0.2);
}

.social-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.social-link h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #22c55e;
}

.social-link p {
    color: #a3a3a3;
}


/* Footer */
.footer {
    background: #0a0a0a;
    border-top: 1px solid rgba(34, 197, 94, 0.2);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo h3 {
    color: #22c55e;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: #a3a3a3;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

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

.footer-links a:hover {
    color: #22c55e;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(34, 197, 94, 0.1);
    color: #a3a3a3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        backdrop-filter: blur(10px);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .article-body {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .article-title {
        font-size: 2.5rem;
    }

    .article-text h2 {
        font-size: 1.8rem;
    }

    .article-text h3 {
        font-size: 1.6rem;
    }

    .article-text h4 {
        font-size: 1.4rem;
    }

    .article-text h5 {
        font-size: 1.2rem;
    }

    .article-sidebar {
        position: static;
        order: -1;
    }

    /* Ensure casino card is visible on mobile */
    #top-casinos {
        margin-bottom: 2rem;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1rem;
    }

    .step-number {
        align-self: center;
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

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

    .prizes-table {
        font-size: 0.9rem;
    }

    .prizes-table th,
    .prizes-table td {
        padding: 0.8rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .article-title {
        font-size: 2rem;
    }

    .article-section-title,
    .contest-title {
        font-size: 2rem;
    }

    .article-text h2 {
        font-size: 1.6rem;
    }

    .article-text h3 {
        font-size: 1.4rem;
    }

    .article-text h4 {
        font-size: 1.2rem;
    }

    .article-text h5 {
        font-size: 1.1rem;
    }

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

    .social-links {
        grid-template-columns: 1fr;
    }

    /* Mobile casino image optimization */
    .casino-image {
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .article-image {
        margin: 1.5rem 0;
    }
}
