@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-color: #a83def;
    --accent-color: #CC3DEE;
    --accent-gold: #FFD700;
    --bg-dark: #0a0a0a;
    --bg-card: #111111;
    --bg-section: #151515;
    --text-primary: #FFFFFF;
    --text-secondary: #AAAAAA;
    --text-muted: #666666;
    --border-color: #222222;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Header & Navigation */
.header {
    background-color: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background-color: rgba(17, 17, 17, 0.95);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo img {
    height: 40px;
}

.hamburger-menu {
    position: absolute;
    left: 2rem;
}

/* Hamburger Menu */
.hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

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

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

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

.hamburger-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 420px;
    height: 100vh;
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-section) 100%);
    border-right: 2px solid var(--border-color);
    z-index: 1000;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: 8px 0 40px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
}

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

.hamburger-nav-header {
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, rgba(168, 61, 239, 0.1) 0%, rgba(17, 17, 17, 0.3) 100%);
    border-bottom: 2px solid var(--border-color);
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.nav-logo {
    height: 45px;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 8px rgba(168, 61, 239, 0.3));
}

.hamburger-nav-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hamburger-nav-list {
    list-style: none;
    padding: 1.5rem 0;
    margin: 0;
    flex: 1;
}

.hamburger-nav-list li {
    border-bottom: 1px solid var(--border-color);
    margin: 0 1.5rem;
}

.hamburger-nav-list li:last-child {
    border-bottom: none;
}

.nav-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
    margin: 1.5rem 1.5rem;
    border-bottom: none !important;
    position: relative;
}

.nav-divider::before {
    content: 'Sections';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--bg-card);
    padding: 0 1rem;
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hamburger-nav-list a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 1.5rem;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    border-radius: 8px;
    margin: 0.5rem 0;
    position: relative;
    overflow: hidden;
}

.hamburger-nav-list a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(168, 61, 239, 0.1), transparent);
    transition: width 0.3s ease;
}

.hamburger-nav-list a:hover::before {
    width: 100%;
}

.hamburger-nav-list a:hover {
    background-color: rgba(168, 61, 239, 0.05);
    border-left-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateX(5px);
    padding-left: 2rem;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 6rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(168, 61, 239, 0.1) 0%, rgba(17, 17, 17, 0.9) 100%),
                url('../images/background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(168, 61, 239, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero-title-line1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(168, 61, 239, 0.3);
    display: block;
}

.hero-title-line2 {
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-color) 50%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1.2;
    position: relative;
    padding-top: 0.5rem;
}

.hero-title-line2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    border-radius: 2px;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--text-primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(168, 61, 239, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--accent-color);
}

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

/* Trust Strip */
.trust-strip {
    background-color: var(--bg-section);
    padding: 3rem 2rem;
    border-bottom: 1px solid var(--border-color);
}

/* Table of Contents */
.toc-section {
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-section) 100%);
    padding: 5rem 2rem;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.toc-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(168, 61, 239, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.toc-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.toc-header {
    text-align: center;
    margin-bottom: 4rem;
}

.toc-header-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

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

.toc-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-color) 50%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

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

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

.toc-card {
    position: relative;
    display: block;
    text-decoration: none;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, var(--bg-section) 0%, var(--bg-card) 100%);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    color: var(--text-primary);
}

.toc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(168, 61, 239, 0.1) 0%, rgba(204, 61, 238, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.toc-card:hover::before {
    opacity: 1;
}

.toc-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--accent-color);
    box-shadow: 0 15px 40px rgba(168, 61, 239, 0.25);
}

.toc-card-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 900;
    color: var(--border-color);
    line-height: 1;
    transition: all 0.4s ease;
    opacity: 0.3;
}

.toc-card:hover .toc-card-number {
    color: var(--accent-color);
    opacity: 0.6;
    transform: scale(1.1);
}

.toc-card-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 4px 8px rgba(168, 61, 239, 0.2));
}

.toc-card:hover .toc-card-icon {
    transform: scale(1.15) rotate(5deg);
}

.toc-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.toc-card:hover .toc-card-title {
    color: var(--accent-color);
}

.toc-card-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.toc-card:hover .toc-card-desc {
    color: var(--text-primary);
}

.trust-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

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

.trust-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.toc-card-icon i,
.trust-icon i,
.trust-point-icon i {
    filter: drop-shadow(0 4px 8px rgba(168, 61, 239, 0.4));
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.toc-card-icon i:hover,
.trust-icon i:hover,
.trust-point-icon i:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.1);
}

.trust-item h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

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

/* Section Styles */
.section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-content {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

.section-content p {
    margin-bottom: 1.5rem;
}

.section-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.column-image {
    border-radius: 12px;
    overflow: hidden;
}

.column-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Casino Cards Grid */
.casino-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.casino-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.casino-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 40px rgba(168, 61, 239, 0.2);
}

.casino-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--text-primary);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.casino-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.casino-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.casino-card .btn {
    width: 100%;
    text-align: center;
    padding: 0.75rem;
    font-size: 0.95rem;
}

/* Review Criteria Grid */
.criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.criteria-item {
    background-color: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

.criteria-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.criteria-item p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Pokies Cards */
.pokies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pokie-card {
    background-color: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

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

.pokie-card-content {
    padding: 1.5rem;
}

.pokie-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.pokie-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Payment Methods */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.payment-card {
    background-color: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.payment-label {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background-color: var(--accent-gold);
    color: var(--bg-dark);
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.payment-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.payment-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Bonus Table */
.bonus-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
    background-color: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
}

.bonus-table th {
    background-color: var(--bg-section);
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: var(--accent-color);
}

.bonus-table td {
    padding: 1rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.bonus-table tr:hover {
    background-color: var(--bg-section);
}

/* Legal Callout */
.legal-callout {
    background-color: var(--bg-card);
    border-left: 4px solid var(--accent-gold);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.legal-callout h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

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

.legal-callout a {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Trust Points */
.trust-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.trust-point {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.trust-point-icon {
    font-size: 2rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.trust-point-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.trust-point-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* FAQ Accordion */
.faq-container {
    max-width: 900px;
    margin: 3rem auto 0;
}

.faq-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--bg-section);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

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

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

.faq-answer-content {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Footer */
.footer {
    background-color: var(--bg-card);
    border-top: 1px solid var(--border-color);
    padding: 4rem 2rem 2rem;
    margin-top: 5rem;
}

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

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

.footer-section h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

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

.footer-disclaimer {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title-line1 {
        font-size: 1.8rem;
    }
    
    .hero-title-line2 {
        font-size: 2.2rem;
    }
    
    .two-column {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 1rem 1.5rem;
    }
    
    .hamburger-menu {
        left: 1.5rem;
    }
    
    .hamburger-nav {
        width: 350px;
    }
    
    .hamburger-nav-header {
        padding: 2rem 1.5rem;
    }
    
    .hamburger-nav-list li {
        margin: 0 1rem;
    }
    
    .hamburger-nav-list a {
        padding: 1.25rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .hero {
        padding: 4rem 1.5rem;
    }
    
    .hero-title-line1 {
        font-size: 1.5rem;
    }
    
    .hero-title-line2 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section {
        padding: 3rem 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .toc-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .toc-card {
        padding: 2rem 1.5rem;
    }
    
    .toc-card-icon {
        font-size: 3rem;
        margin-bottom: 1.25rem;
    }
    
    .toc-card-title {
        font-size: 1.3rem;
    }
    
    .toc-card-number {
        font-size: 2.5rem;
        top: 1.25rem;
        right: 1.25rem;
    }
    
    .bonus-table {
        font-size: 0.85rem;
    }
    
    .bonus-table th,
    .bonus-table td {
        padding: 0.75rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem 1rem;
    }
    
    .hamburger-menu {
        left: 1rem;
    }
    
    .hamburger-nav {
        width: 100%;
    }
    
    .hamburger-nav-header {
        padding: 1.5rem 1rem;
    }
    
    .nav-logo {
        height: 35px;
    }
    
    .hamburger-nav-header h3 {
        font-size: 0.95rem;
    }
    
    .hamburger-nav-list li {
        margin: 0 0.75rem;
    }
    
    .hamburger-nav-list a {
        padding: 1.25rem 1rem;
        font-size: 0.9rem;
    }
    
    .hero-title-line1 {
        font-size: 1.3rem;
    }
    
    .hero-title-line2 {
        font-size: 1.5rem;
    }
    
    .hero-title-line2::after {
        width: 60px;
        height: 3px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}
