/* style.css for traveltownfreeenergy.link */

/* --- 1. Design Variables & Base Styles --- */
:root {
    --primary-color: #14b8a6; /* Teal */
    --primary-dark: #0d9488; /* Darker Teal */
    --accent-color: #f59e0b; /* Sunny Yellow/Gold */
    --bg-color: #f7f9f7; /* Very light, slightly green-tinted white */
    --surface-color: #ffffff; /* Card background */
    --text-color: #2c3e50; /* Dark, desaturated blue */
    --text-light: #576a82; /* Lighter text for descriptions */
    --border-color: #e9eeea;
    --border-radius: 16px;
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.07);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.07), 0 4px 6px -4px rgba(0,0,0,0.07);
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Nunito Sans', sans-serif;
}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    margin: 0;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-weight: 400;
}

.container {
    max-width: 850px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- 2. Header & Navigation --- */
.main-header {
    background-color: var(--surface-color);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-color);
    text-decoration: none;
}

.logo span {
    color: var(--primary-color);
}

.main-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    margin-left: 25px;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.main-nav a:hover {
    color: var(--text-color);
    background-color: var(--bg-color);
}

.main-nav a.active {
    color: var(--primary-dark);
    background-color: #e6f8f5; /* Light teal background */
}

/* Hamburger & Mobile Menu */
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}
.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    display: block;
    margin: 5px 0;
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}
.hamburger.is-active .hamburger-line:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.is-active .hamburger-line:nth-child(2) { opacity: 0; }
.hamburger.is-active .hamburger-line:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu-overlay {
    position: fixed;
    top: 70px; /* Height of header */
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--surface-color);
    z-index: 99;
    transform: translateY(-110%);
    transition: transform 0.3s ease-in-out;
    padding: 20px;
}
.mobile-menu-overlay.is-open { transform: translateY(0); }
.mobile-menu-overlay nav { display: flex; flex-direction: column; }
.mobile-menu-overlay nav a { font-size: 1.2rem; padding: 15px 10px; border-bottom: 1px solid var(--border-color); }


/* --- 3. Main Content & Page Header --- */
main {
    padding: 40px 0;
}

.page-header {
    text-align: center;
    margin-bottom: 40px;
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-color);
    margin: 0 0 0.5rem 0;
}

.page-header h2 {
    font-size: 1.2rem;
    color: var(--text-light);
    margin: 0 0 1.5rem 0;
    font-weight: 600;
}

.intro-text {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.content-section {
    margin-top: 40px;
    padding: 40px;
    background-color: var(--surface-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-color);
    margin: 0 0 25px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}
.section-title i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.ad-container {
    padding: 20px 0;
    margin: 30px 0;
    text-align: center;
}

/* --- 4. Dynamic Links Table --- */
.update-status {
    display: inline-flex;
    align-items: center;
    background-color: var(--bg-color);
    padding: 8px 15px;
    border-radius: 99px;
    font-size: 0.9em;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 25px;
    border: 1px solid var(--border-color);
}
.update-status .dot {
    width: 10px;
    height: 10px;
    background-color: var(--accent-color);
    border-radius: 50%;
    margin-right: 10px;
    animation: pulse 1.7s infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(245, 158, 11, 0); }
    100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

.table-title {
    font-family: var(--font-heading);
    text-align: center;
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: var(--text-color);
}

.links-table-container {
    overflow-x: auto;
}

.links-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
}

.links-table th, .links-table td {
    padding: 15px 12px;
    border-bottom: 1px solid var(--border-color);
}

.links-table thead {
    background-color: var(--bg-color);
}
.links-table th {
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.links-table td { color: var(--text-light); }

.reward-cell {
    font-weight: 600;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.reward-cell .fa-bolt {
    color: var(--accent-color);
}

.claim-button {
    background: linear-gradient(45deg, var(--accent-color), #facc15);
    color: #422006;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 99px;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.claim-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* --- 5. "More Ways" Card Grid --- */
.ways-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}
.way-card {
    background-color: var(--bg-color);
    padding: 30px 25px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}
.way-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: #d1e7e4;
}
.way-icon {
    margin: 0 auto 20px auto;
    width: 60px;
    height: 60px;
    background-color: #e6f8f5; /* Light teal */
    color: var(--primary-dark);
    border-radius: 50%;
    display: grid;
    place-items: center;
}
.way-icon i { font-size: 1.6rem; }
.way-card h3 {
    font-family: var(--font-heading);
    color: var(--text-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}
.way-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* --- 6. FAQ Section --- */
.faq-item { border-bottom: 1px solid var(--border-color); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.25rem 0;
    background-color: transparent;
    border: none;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
    color: var(--text-color);
}
.faq-question::after {
    content: '+';
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform .2s ease;
    font-weight: 400;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease-out, padding .4s ease-out;
    padding: 0;
    color: var(--text-light);
}
.faq-item.active .faq-question { color: var(--primary-dark); }
.faq-item.active .faq-question::after { transform: translateY(-50%) rotate(45deg); }
.faq-item.active .faq-answer { padding: 0 0 1.5rem 0; }

/* --- 7. Footer --- */
.main-footer {
    text-align: center;
    margin-top: 60px;
    padding: 40px 20px;
    background-color: #e9eeea;
    font-size: 0.9em;
    color: var(--text-light);
}
.main-footer p { margin: 5px 0 0 0; }
.main-footer .disclaimer { font-size: 0.8em; opacity: 0.8; }

/* --- 8. Responsive Design --- */
@media(max-width: 992px) {
    .main-nav { display: none; }
    .hamburger { display: block; }
}

@media(max-width: 768px) { 
    .page-header h1 { font-size: 2.5rem; }
    .content-section { padding: 25px; }
    .links-section {
        padding-left: 0;
        padding-right: 0;
        border: none;
        box-shadow: none;
        background-color: transparent;
    }
}
/* --- 9. "What Is" Info Section --- */
.info-layout {
    display: flex;
    align-items: center;
    gap: 40px; /* Space between text and image */
    margin: 30px 0;
}

.info-text {
    flex: 1.5; /* Give the text more space */
}

.info-image {
    flex: 1;
    text-align: center;
}

.info-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.subsection-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-color);
    margin-top: 25px;
    margin-bottom: 15px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-list li {
    padding-left: 35px;
    position: relative;
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.feature-list li::before {
    content: '\f058'; /* Font Awesome check-circle icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.feature-list li strong {
    color: var(--text-color);
    font-weight: 600;
    display: block; /* Puts the description on a new line */
    margin-bottom: 2px;
}

.conclusion-text {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    background-color: var(--bg-color);
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
}

/* Make the info section stack on mobile */
@media(max-width: 768px) {
    .info-layout {
        flex-direction: column-reverse; /* Puts image on top */
        gap: 25px;
    }
}
/* --- 10. Key Features Section --- */
.themed-title-bar {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--surface-color);
    font-family: var(--font-heading);
    padding: 15px 25px;
    border-radius: 12px;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0;
    box-shadow: 0 4px 15px rgba(20, 184, 166, 0.2);
}

.features-layout {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 30px;
}

.features-list {
    flex: 1.2; /* Give the list a little more space */
}

.features-image {
    flex: 1;
    text-align: center;
}

.features-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.features-list ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px; /* Space between list items */
}

.features-list li {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
}

.features-list li i {
    color: var(--primary-dark);
    font-size: 1.3rem;
    margin-right: 15px;
    width: 25px; /* Ensures icons are aligned */
    text-align: center;
}

/* Responsive stacking for the features section */
@media(max-width: 768px) {
    .features-layout {
        flex-direction: column;
    }
    .themed-title-bar {
        font-size: 1.4rem;
    }
}

/* --- 11. Diamonds Guide Section (Corrected) --- */
.subsection-title-large {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-color);
    margin-top: 40px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

.snippet-answer {
    background-color: var(--bg-color);
    border-left: 4px solid var(--primary-color);
    margin: 20px 0;
    padding: 20px;
    font-style: italic;
    color: var(--text-light);
    border-radius: 0 8px 8px 0;
}
.snippet-answer p {
    margin: 0;
}

.methods-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 30px;
}

.method-card {
    display: flex;
    gap: 20px;
    background-color: var(--surface-color);
    padding: 25px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: box-shadow 0.2s ease;
}
.method-card:hover {
    box-shadow: var(--shadow);
}
.method-card-optional {
    background-color: #fffaf0; /* Soft cream for optional/paid */
    border-color: #ffe8c0;
}

.method-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
}
.method-card-optional .method-number {
    background-color: var(--accent-color);
    color: #422006;
}

.method-details h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-color);
    margin: 0 0 5px 0;
}
.method-details p {
    margin: 0;
    color: var(--text-light);
}

.tip-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background-color: #e6f8f5; /* Light teal to match theme */
    padding: 25px;
    border-radius: 12px;
    margin-top: 30px;
}
.tip-icon {
    font-size: 1.8rem;
    margin-top: -2px; /* Adjust vertical alignment */
}
.tip-text h4 {
    margin: 0 0 5px 0;
    font-family: var(--font-heading);
    color: var(--text-color);
    font-size: 1.1rem;
}
.tip-text p {
    margin: 0;
    color: var(--text-light);
}
/* --- 12. Coins Guide Section (Accordion) --- */
.coins-accordion {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-top: 30px;
}

.accordion-item {
    border-bottom: 1px solid var(--border-color);
}
.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: var(--surface-color);
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.2s ease;
}
.accordion-header:hover {
    background-color: var(--bg-color);
}

.accordion-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    font-family: var(--font-body);
}

.accordion-icon {
    color: var(--primary-color);
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    background-color: var(--bg-color);
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}
.accordion-content p {
    padding: 0 20px 20px 20px;
    margin: 0;
    color: var(--text-light);
}

/* Active state for accordion */
.accordion-item.active .accordion-header {
    background-color: #e6f8f5; /* Light teal */
}
.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}
.accordion-item.active .accordion-content {
    /* Calculated by JS */
}

/* Pro Tip Box - New Design */
.pro-tip-box {
    text-align: center;
    padding: 25px;
    margin-top: 30px;
    background-color: var(--surface-color);
    border: 1px dashed var(--primary-color);
    border-radius: var(--border-radius);
}
.pro-tip-icon {
    font-size: 1.5rem;
    margin-bottom: 10px;
}
.pro-tip-text h4 {
    font-family: var(--font-heading);
    color: var(--text-color);
    margin: 0 0 5px 0;
}
.pro-tip-text p {
    color: var(--text-light);
    margin: 0;
}
/* --- 13. How to Get Energy Section (Timeline) --- */
.timeline-list {
    margin-top: 30px;
    padding-left: 25px; /* Space for the line and icons */
    position: relative;
}

/* The vertical line of the timeline */
.timeline-list::before {
    content: '';
    position: absolute;
    left: 48px; /* Aligns with the center of the icon */
    top: 10px;
    bottom: 10px;
    width: 3px;
    background-color: var(--border-color);
    border-radius: 3px;
}

.timeline-item {
    display: flex;
    gap: 25px;
    position: relative;
    padding-bottom: 30px;
}
.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.4rem;
    z-index: 2; /* Sits on top of the line */
    border: 3px solid var(--surface-color); /* Creates a cutout effect over the line */
}

.timeline-content {
    background-color: var(--bg-color);
    padding: 20px;
    border-radius: 12px;
    flex-grow: 1;
}

.timeline-content h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-color);
    margin: 0 0 8px 0;
}

.timeline-content p {
    margin: 0;
    color: var(--text-light);
}

/* Responsive adjustments for timeline */
@media (max-width: 768px) {
    .timeline-list {
        padding-left: 0;
    }
    .timeline-list::before {
        left: 23px; /* Re-center the line */
    }
    .timeline-item {
        gap: 15px;
    }
}
/* --- 14. How to Claim Section (Checklist) --- */
.checklist {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.checklist li {
    display: flex;
    align-items: flex-start;
    background-color: var(--bg-color);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.checkbox-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin-right: 15px;
    margin-top: 2px;
}
.checkbox-icon i {
    font-size: 0.9rem;
}

.checklist-text {
    color: var(--text-light);
    line-height: 1.6;
}
.checklist-text strong {
    color: var(--text-color);
    font-weight: 600;
}

.note-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background-color: #fefce8; /* Soft Yellow */
    border-left: 4px solid #f59e0b; /* Accent Yellow */
    border-radius: 8px;
}

.note-icon {
    font-size: 1.5rem;
    margin-top: -3px; /* Vertical alignment */
}

.note-text {
    color: #713f12; /* Dark Yellow/Brown */
    line-height: 1.6;
}
.note-text strong {
    color: #422006; /* Even Darker Brown */
}
/* --- 15. Troubleshooting Section (Grid) --- */
.troubleshooting-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.column-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-color);
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.problem-column .column-title i { color: #ef4444; } /* Red for problems */
.solution-column .column-title i { color: var(--primary-color); } /* Teal for solutions */

.reason-card {
    background-color: var(--bg-color);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin-bottom: 15px;
}
.reason-card h4 {
    margin: 0 0 5px 0;
    font-family: var(--font-heading);
    color: var(--text-color);
}
.reason-card p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.solution-column p {
    color: var(--text-light);
}

.solution-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.solution-list li {
    line-height: 1.6;
    color: var(--text-light);
}
.solution-list li strong {
    font-weight: 600;
    color: var(--text-color);
}

/* Responsive adjustments for the grid */
@media (max-width: 768px) {
    .troubleshooting-grid {
        grid-template-columns: 1fr; /* Stack columns on mobile */
    }
}
/* --- 16. Where to Find Links Section (Social Grid) --- */
.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    border-radius: var(--border-radius);
    text-decoration: none;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}
.social-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: #ddd;
}

.social-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.social-details h3 {
    margin: 0 0 5px 0;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--text-color);
}
.social-details p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Social Media Brand Colors */
.facebook-card .social-icon { color: #1877F2; }
.facebook-card:hover { border-left: 5px solid #1877F2; }

.instagram-card .social-icon { color: #E4405F; }
.instagram-card:hover { border-left: 5px solid #E4405F; }

.twitter-card .social-icon { color: #1DA1F2; }
.twitter-card:hover { border-left: 5px solid #1DA1F2; }

.facebook-group-card .social-icon { color: #1877F2; } /* Same as Facebook */
.facebook-group-card:hover { border-left: 5px solid #1877F2; }

.concluding-tip {
    padding: 20px;
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-light);
    line-height: 1.7;
    text-align: center;
}

/* Responsive container for YouTube video embed */
.video-embed-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #f0f0f0; 
    margin-top: 20px;
    border-radius: var(--border-radius);
    border: 1px solid #ddd;
}

.video-embed-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
/* --- 18. Gameplay Tips Section (Tip Card Grid) --- */
.tips-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two columns */
    gap: 20px;
    margin-top: 30px;
}

.tip-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background-color: var(--bg-color);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
}
.tip-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.tip-icon {
    flex-shrink: 0;
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-top: 4px; /* Vertical alignment */
    width: 25px;
    text-align: center;
}

.tip-card-text {
    color: var(--text-light);
    line-height: 1.6;
}

.tip-card-text strong {
    color: var(--text-color);
    font-weight: 600;
}

/* Responsive adjustments for the tips grid */
@media (max-width: 768px) {
    .tips-grid {
        grid-template-columns: 1fr; /* Stack to one column on mobile */
    }
}
/* --- 19. Events Guide Section --- */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 25px 0 40px 0;
}

.event-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background-color: var(--bg-color);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.event-icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background-color: #e6f8f5; /* Light teal */
    color: var(--primary-dark);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.3rem;
}

.event-details h4 {
    margin: 0 0 5px 0;
    font-family: var(--font-heading);
    color: var(--text-color);
    font-size: 1.1rem;
}
.event-details p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.benefits-list {
    list-style: none;
    padding: 20px;
    margin: 25px 0;
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    color: var(--text-light);
}
.benefits-list li i {
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}
.benefits-list li strong {
    font-weight: 600;
    color: var(--text-color);
}
/* --- 20. Similar Games Section --- */
.games-list {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.game-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: all 0.2s ease-in-out;
}
.game-card:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
}

.game-rank {
    flex-shrink: 0;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    font-family: var(--font-heading);
    width: 30px;
    text-align: center;
}

.game-icon-placeholder {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.game-details h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-color);
    margin: 0 0 5px 0;
}
.game-details p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

.why-try-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 25px;
    background-color: var(--bg-color);
    border-radius: 12px;
}
.why-try-icon {
    font-size: 1.5rem;
    margin-top: -2px;
}
.why-try-text h4 {
    margin: 0 0 5px 0;
    font-family: var(--font-heading);
    color: var(--text-color);
}
.why-try-text p {
    margin: 0;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .game-icon-placeholder {
        width: 50px;
        height: 50px;
    }
}
/* --- Final Table Styles for Link + Copy Button --- */
.claim-link {
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px dotted var(--primary-color);
    transition: all 0.2s ease-in-out;
}
.claim-link:hover {
    color: #fff;
    background-color: var(--primary-color);
    border-bottom-color: transparent;
    padding: 2px 6px;
    border-radius: 6px;
}

.copy-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light);
    margin-left: 15px;
    font-size: 1.1em;
    transition: color 0.2s;
}
.copy-btn:hover {
    color: var(--primary-dark);
}