.page-betting-tools {
    font-family: 'Arial', sans-serif;
    color: #E2E8F0; /* Light gray for general text on dark background */
    background-color: #1A202C; /* Primary dark background */
}

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

.page-betting-tools-section {
    padding: 60px 0;
    text-align: center;
}

.page-betting-tools-section-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold for titles */
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-betting-tools-section-description {
    font-size: 1.1em;
    color: #CBD5E0; /* Slightly lighter gray for descriptions */
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

/* Hero Section */
.page-betting-tools-hero {
    background: linear-gradient(135deg, #1A202C 0%, #2D3748 100%); /* Dark gradient */
    padding: 100px 0;
    color: #E2E8F0;
    text-align: left;
}

.page-betting-tools-hero .page-betting-tools-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.page-betting-tools-hero-content {
    flex: 1;
}

.page-betting-tools-hero-title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 25px;
    line-height: 1.1;
}

.page-betting-tools-hero-description {
    font-size: 1.3em;
    color: #CBD5E0;
    margin-bottom: 35px;
    line-height: 1.5;
}

.page-betting-tools-hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-betting-tools-hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Buttons */
.page-betting-tools-btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-right: 15px;
    margin-bottom: 15px;
    text-align: center;
}

.page-betting-tools-btn-primary {
    background-color: #FFD700; /* Gold */
    color: #1A202C; /* Dark text on gold */
    border: 2px solid #FFD700;
}

.page-betting-tools-btn-primary:hover {
    background-color: #e6c200; /* Darker gold */
    border-color: #e6c200;
    transform: translateY(-3px);
}

.page-betting-tools-btn-secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-betting-tools-btn-secondary:hover {
    background-color: #FFD700;
    color: #1A202C;
    transform: translateY(-3px);
}

.page-betting-tools-btn-link {
    background-color: transparent;
    color: #FFD700;
    border: 1px solid #FFD700;
    padding: 10px 20px;
    font-size: 1em;
    margin-top: 20px;
}

.page-betting-tools-btn-link:hover {
    background-color: #FFD700;
    color: #1A202C;
}

/* Features Grid */
.page-betting-tools-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-betting-tools-feature-item {
    background-color: #2D3748; /* Slightly lighter dark background */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-betting-tools-feature-item:hover {
    transform: translateY(-10px);
}

.page-betting-tools-feature-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5)); /* Gold glow */
}

.page-betting-tools-feature-item h3 {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-betting-tools-feature-item p {
    font-size: 1em;
    color: #CBD5E0;
    line-height: 1.6;
}

/* Tool Cards Grid */
.page-betting-tools-tool-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-betting-tools-tool-card {
    background-color: #2D3748;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: left;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-betting-tools-tool-card:hover {
    transform: translateY(-10px);
}

.page-betting-tools-tool-card img {
    width: 90px;
    height: 90px;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 7px rgba(255, 215, 0, 0.6));
}

.page-betting-tools-tool-card h3 {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-betting-tools-tool-card h3 a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-betting-tools-tool-card h3 a:hover {
    color: #e6c200;
    text-decoration: underline;
}

.page-betting-tools-tool-card p {
    font-size: 1.05em;
    color: #CBD5E0;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Advantages List */
.page-betting-tools-advantages-list {
    list-style: none;
    padding: 0;
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    text-align: left;
}

.page-betting-tools-advantages-list li {
    background-color: #2D3748;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 1.1em;
    color: #CBD5E0;
    line-height: 1.6;
    transition: background-color 0.3s ease;
}

.page-betting-tools-advantages-list li:hover {
    background-color: #3A475A;
}

.page-betting-tools-advantages-list li img {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 3px rgba(255, 215, 0, 0.4));
}

.page-betting-tools-advantages-list li strong {
    color: #FFD700;
    font-weight: bold;
}

/* Call to Action Section */
.page-betting-tools-cta {
    background-color: #1A202C;
    padding: 80px 0;
    border-top: 1px solid #3A475A;
}

.page-betting-tools-cta-buttons {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-betting-tools-hero .page-betting-tools-container {
        flex-direction: column;
        text-align: center;
    }

    .page-betting-tools-hero-title {
        font-size: 2.8em;
    }

    .page-betting-tools-hero-description {
        font-size: 1.1em;
    }

    .page-betting-tools-hero-image {
        margin-top: 40px;
    }

    .page-betting-tools-section-title {
        font-size: 2.2em;
    }

    .page-betting-tools-btn {
        padding: 12px 25px;
        font-size: 1em;
        margin-right: 10px;
    }
}

@media (max-width: 768px) {
    .page-betting-tools-section {
        padding: 40px 0;
    }

    .page-betting-tools-hero {
        padding: 60px 0;
    }

    .page-betting-tools-hero-title {
        font-size: 2.2em;
    }

    .page-betting-tools-hero-description {
        font-size: 1em;
    }

    .page-betting-tools-features-grid, .page-betting-tools-tool-card-grid, .page-betting-tools-advantages-list {
        grid-template-columns: 1fr;
    }

    .page-betting-tools-btn {
        display: block;
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }

    .page-betting-tools-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .page-betting-tools-section-title {
        font-size: 1.8em;
    }

    .page-betting-tools-hero-title {
        font-size: 1.9em;
    }

    .page-betting-tools-feature-item h3, .page-betting-tools-tool-card h3 {
        font-size: 1.4em;
    }

    .page-betting-tools-advantages-list li {
        font-size: 0.95em;
        padding: 20px;
    }
}