/* Main CSS for Betwarts Casino */
:root {
    /* Color scheme inspired by magical dark blue theme */
    --primary-color: #1a2035;
    --secondary-color: #2e3b5a;
    --accent-color: #d4af37; /* Gold color */
    --accent-secondary: #7851a9; /* Purple for magical elements */
    --text-light: #e5e5e5;
    --text-dark: #232323;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --exclusive-color: #9c27b0;
    
    /* Font families */
    --heading-font: 'Cinzel', serif;
    --body-font: 'Raleway', sans-serif;
}

/* Google Fonts import */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Raleway:wght@300;400;500;600;700&display=swap');

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

body {
    font-family: var(--body-font);
    color: var(--text-light);
    background-color: var(--primary-color);
    background-image: url('/api/placeholder/1920/1080');
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--text-light);
}

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

h1::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: var(--accent-color);
    margin: 0.5rem auto 0;
}

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

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

p {
    margin-bottom: 1rem;
}

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

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 3px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    font-family: var(--heading-font);
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--text-dark);
    border: 2px solid var(--accent-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent-color);
}

.btn-secondary {
    background-color: var(--accent-secondary);
    color: var(--text-light);
    border: 2px solid var(--accent-secondary);
}

.btn-secondary:hover {
    background-color: transparent;
    color: var(--accent-secondary);
}

.btn-login {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid var(--text-light);
}

.btn-login:hover {
    background-color: var(--text-light);
    color: var(--primary-color);
}

.btn-register {
    background-color: var(--accent-color);
    color: var(--text-dark);
    border: 1px solid var(--accent-color);
}

.btn-register:hover {
    background-color: transparent;
    color: var(--accent-color);
}

/* Header Styles */
.site-header {
    padding: 1rem 0;
    background-color: rgba(26, 32, 53, 0.9);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}

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

.logo img {
    max-height: 60px;
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav ul li {
    margin-left: 1.5rem;
}

.main-nav ul li a {
    color: var(--text-light);
    font-weight: 600;
    position: relative;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.main-nav ul li a:hover::after {
    width: 100%;
}

.cta-buttons {
    display: flex;
    gap: 10px;
}

/* Main Content Styles */
.site-main {
    padding-top: 100px; /* Account for fixed header */
    min-height: calc(100vh - 200px);
}

section {
    padding: 4rem 0;
    position: relative;
}

section:nth-child(even) {
    background-color: rgba(46, 59, 90, 0.7);
}

/* Magic theme decorative elements */
section::before, section::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background-image: url('/api/placeholder/30/30');
    background-size: contain;
}

section::before {
    top: 20px;
    left: 20px;
}

section::after {
    bottom: 20px;
    right: 20px;
}

/* Card styling for various elements */
.card {
    background-color: rgba(26, 32, 53, 0.8);
    border-radius: 5px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    border-color: var(--accent-color);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, transparent 75%, var(--accent-color) 75%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

/* Badge styles */
.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-right: 0.5rem;
}

.badge-welcome {
    background-color: var(--accent-color);
    color: var(--text-dark);
}

.badge-reload {
    background-color: var(--success-color);
    color: var(--text-light);
}

.badge-cashback {
    background-color: var(--warning-color);
    color: var(--text-dark);
}

.badge-live {
    background-color: var(--danger-color);
    color: var(--text-light);
}

.badge-free-spins {
    background-color: var(--success-color);
    color: var(--text-light);
}

.badge-popular {
    background-color: var(--warning-color);
    color: var(--text-dark);
}

.badge-exclusive {
    background-color: var(--exclusive-color);
    color: var(--text-light);
}

/* Footer Styles */
.site-footer {
    background-color: rgba(26, 32, 53, 0.95);
    padding: 2rem 0;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.footer-disclaimer {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.footer-links {
    text-align: center;
    font-size: 0.85rem;
}

.responsible-msg {
    color: var(--accent-color);
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 992px) {
    .site-header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .main-nav ul {
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .main-nav ul li {
        margin: 0.5rem;
    }
}

@media (max-width: 576px) {
    .cta-buttons {
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

.welcome-bonus-hero {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background-color: rgba(26, 32, 53, 0.8);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--accent-color);
    position: relative;
}

.welcome-bonus-hero::before,
.welcome-bonus-hero::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    background-image: url('/api/placeholder/50/50');
    background-size: contain;
    z-index: 1;
}

.welcome-bonus-hero::before {
    top: -25px;
    left: -25px;
}

.welcome-bonus-hero::after {
    bottom: -25px;
    right: -25px;
}

.hero-image {
    width: 100%;
    max-width: 720px;
    height: auto;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.bonus-highlight {
    margin-bottom: 2rem;
}

.bonus-amount {
    font-family: var(--heading-font);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.bonus-description {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 1.5rem;
}

.bonus-terms {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    border-radius: 5px;
    margin-bottom: 2rem;
    text-align: left;
}

.bonus-terms h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.bonus-terms ul {
    list-style-position: inside;
    margin-left: 1rem;
}

.bonus-terms ul li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1rem;
}

.bonus-terms ul li::before {
    content: '•';
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

.bonus-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

@media (max-width: 768px) {
    .bonus-amount {
        font-size: 1.75rem;
    }
    
    .bonus-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .bonus-cta .btn {
        width: 100%;
        max-width: 300px;
    }
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

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

.promotion-card {
    background-color: rgba(26, 32, 53, 0.9);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.promotion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    border-color: var(--accent-color);
}

.promotion-header {
    background-color: rgba(46, 59, 90, 0.8);
    padding: 1.5rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.promotion-header h3 {
    margin: 0;
}

.promotion-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.promotion-content p {
    margin-bottom: 1rem;
}

.promotion-terms {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1rem;
    border-radius: 5px;
    margin: 1rem 0;
    flex-grow: 1;
}

.promotion-terms p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.promotion-btn {
    align-self: flex-start;
    margin-top: auto;
}

@media (max-width: 992px) {
    .promotions-grid {
        grid-template-columns: 1fr;
    }
}

.bonus-crab-container {
    background-color: rgba(26, 32, 53, 0.8);
    border-radius: 10px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.bonus-crab-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/api/placeholder/1200/600');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: -1;
}

.bonus-crab-content {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.bonus-crab-icon {
    flex-shrink: 0;
    padding: 1rem;
    background-color: rgba(46, 59, 90, 0.7);
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--accent-color);
}

.bonus-crab-info {
    flex-grow: 1;
}

.bonus-crab-intro {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    border-left: 4px solid var(--accent-color);
    padding-left: 1rem;
}

.mechanics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.mechanic-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: rgba(46, 59, 90, 0.5);
    padding: 1rem;
    border-radius: 5px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.mechanic-number {
    background-color: var(--accent-color);
    color: var(--text-dark);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: var(--heading-font);
    flex-shrink: 0;
}

.possible-rewards {
    margin: 2rem 0;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    border-radius: 8px;
}

.rewards-list {
    list-style: none;
    margin: 1rem 0;
}

.rewards-list li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
}

.rewards-list li::before {
    content: '✦';
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

.reward-highlight {
    color: var(--accent-color);
    font-weight: 700;
}

.bonus-crab-cta {
    margin-top: 2rem;
    text-align: center;
}

@media (max-width: 768px) {
    .bonus-crab-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .bonus-crab-intro {
        border-left: none;
        padding-left: 0;
        border-bottom: 4px solid var(--accent-color);
        padding-bottom: 1rem;
    }
    
    .mechanics-grid {
        grid-template-columns: 1fr;
    }
    
    .rewards-list li {
        padding-left: 0;
    }
    
    .rewards-list li::before {
        position: static;
        margin-right: 0.5rem;
    }
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.game-card {
    background-color: rgba(26, 32, 53, 0.8);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
    height: 100%;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    border-color: var(--accent-color);
}

.game-image {
    position: relative;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.game-card:hover .game-image img {
    transform: scale(1.05);
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .play-icon {
    opacity: 1;
}

.game-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0.25rem 0.75rem;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.game-badge-popular {
    background-color: var(--warning-color);
    color: var(--text-dark);
}

.game-badge-free {
    background-color: var(--success-color);
    color: var(--text-light);
}

.game-badge-exclusive {
    background-color: var(--exclusive-color);
    color: var(--text-light);
}

.game-info {
    padding: 1rem;
}

.game-title {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.game-details {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: rgba(229, 229, 229, 0.8);
}

.game-rtp {
    color: var(--accent-color);
}

.games-cta {
    text-align: center;
    margin-top: 1rem;
}

@media (max-width: 1200px) {
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .games-grid {
        grid-template-columns: 1fr;
    }
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: rgba(26, 32, 53, 0.8);
    border-radius: 8px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-color);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: rgba(46, 59, 90, 0.5);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.25rem;
}

.faq-toggle {
    position: relative;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.faq-plus, .faq-minus {
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.3s ease;
}

.faq-minus {
    opacity: 0;
}

.faq-item.active .faq-plus {
    opacity: 0;
}

.faq-item.active .faq-minus {
    opacity: 1;
}

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

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 1000px;
}

.faq-answer p {
    margin-bottom: 1rem;
}

.faq-answer ul, .faq-answer ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

.banking-tabs {
    max-width: 900px;
    margin: 0 auto;
}

.tab-headers {
    display: flex;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.tab-header {
    padding: 1rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-light);
    opacity: 0.7;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.tab-header.active {
    color: var(--accent-color);
    opacity: 1;
    border-bottom-color: var(--accent-color);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.banking-table-wrapper {
    overflow-x: auto;
    margin-bottom: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

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

.banking-table th {
    background-color: rgba(46, 59, 90, 0.8);
    color: var(--accent-color);
    text-align: left;
    padding: 1rem;
    font-weight: 600;
}

.banking-table td {
    padding: 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.banking-table tr:hover {
    background-color: rgba(46, 59, 90, 0.3);
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.payment-method img {
    width: 40px;
    height: auto;
    object-fit: contain;
}

.banking-notes {
    background-color: rgba(26, 32, 53, 0.8);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.banking-notes h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.banking-notes ul {
    list-style: none;
}

.banking-notes li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.banking-notes li::before {
    content: '✦';
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

.about-casino-content {
    background-color: rgba(26, 32, 53, 0.8);
    border-radius: 10px;
    padding: 2.5rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.about-casino-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/api/placeholder/1200/800');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: -1;
}

.about-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 1rem;
}

.about-logo img {
    height: 60px;
    width: auto;
}

.about-description {
    margin-bottom: 2.5rem;
}

.about-description p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.about-benefits h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background-color: rgba(46, 59, 90, 0.5);
    padding: 1.25rem;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-color);
}

.benefit-icon {
    flex-shrink: 0;
}

.benefit-text h4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.benefit-text p {
    font-size: 0.9rem;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .benefits-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
    }
}


.responsible-gambling-content {
    background-color: rgba(26, 32, 53, 0.8);
    border-radius: 10px;
    padding: 2.5rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.responsible-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    text-align: center;
}

.responsible-message {
    margin-bottom: 2rem;
    border-left: 4px solid var(--accent-color);
    padding-left: 1.5rem;
}

.responsible-message p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.responsible-tools {
    margin-bottom: 2rem;
}

.responsible-tools h3, .responsible-help h3, .responsible-checklist h3, .responsible-underage h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
}

.responsible-tools h3::after, .responsible-help h3::after, .responsible-checklist h3::after, .responsible-underage h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--accent-color);
    margin: 0.5rem auto 0;
}

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

.tool-item {
    background-color: rgba(46, 59, 90, 0.5);
    padding: 1.25rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.tool-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-color);
}

.tool-item h4 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.responsible-help {
    margin-bottom: 2rem;
}

.help-organizations {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.help-org {
    background-color: rgba(46, 59, 90, 0.5);
    padding: 1.25rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.help-org:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-color);
}

.help-org h4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.help-org p {
    margin-bottom: 0.5rem;
}

.responsible-checklist {
    margin-bottom: 2rem;
}

.responsible-checklist ul {
    background-color: rgba(46, 59, 90, 0.5);
    padding: 1.5rem 1.5rem 1.5rem 3rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.responsible-checklist li {
    margin-bottom: 0.75rem;
    position: relative;
}

.responsible-checklist li::marker {
    color: var(--accent-color);
}

.responsible-underage {
    background-color: rgba(46, 59, 90, 0.5);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.responsible-underage p {
    margin-bottom: 0.75rem;
}

.responsible-underage p:last-child {
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .help-organizations {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .responsible-message {
        border-left: none;
        padding-left: 0;
    }
}