/* bravobet - Penetration Test Theme CSS */
/* 2026 Cyberpunk Hacker Style */

:root {
    --primary-green: #00ff41;
    --secondary-cyan: #00d4ff;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --card-bg: #0d1117;
    --text-primary: #e6e6e6;
    --text-secondary: #a0a0a0;
    --accent-purple: #9d4edd;
    --warning-red: #ff3333;
    --success-green: #00cc66;
    --border-glow: rgba(0, 255, 65, 0.3);
    --font-mono: 'Courier New', 'Fira Code', monospace;
    --font-main: 'Segoe UI', 'Roboto', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.7;
    min-height: 100vh;
    background-image: 
        linear-gradient(rgba(0, 255, 65, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 65, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

/* Header & Navigation */
.site-header {
    background: linear-gradient(180deg, var(--darker-bg) 0%, transparent 100%);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-glow);
}

.main-nav {
    position: relative;
}

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    border: 2px solid var(--primary-green);
    box-shadow: 0 0 15px var(--border-glow);
}

.brand-name {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    text-shadow: 0 0 10px var(--primary-green);
    letter-spacing: 2px;
}

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

.nav-link {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    border: 1px solid transparent;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: var(--font-mono);
    font-size: 0.9rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-green);
    border-color: var(--primary-green);
    background: rgba(0, 255, 65, 0.1);
    text-shadow: 0 0 5px var(--primary-green);
}

.cta-button {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-cyan) 100%);
    color: var(--dark-bg);
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.4);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.6);
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 255, 65, 0.4); }
    50% { box-shadow: 0 0 40px rgba(0, 255, 65, 0.8); }
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger-line {
    width: 25px;
    height: 2px;
    background: var(--primary-green);
    transition: all 0.3s ease;
}

/* Breadcrumb */
.breadcrumb-nav {
    max-width: 1400px;
    margin: 1rem auto;
    padding: 0 2rem;
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    font-family: var(--font-mono);
    font-size: 0.85rem;
}

.breadcrumb-list a {
    color: var(--primary-green);
    text-decoration: none;
}

.breadcrumb-list a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 4rem;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    filter: brightness(0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 3rem;
    background: rgba(10, 10, 10, 0.85);
    border: 1px solid var(--primary-green);
    border-radius: 8px;
    box-shadow: 0 0 50px rgba(0, 255, 65, 0.2);
}

.hero-title {
    font-family: var(--font-mono);
    font-size: 3.5rem;
    color: var(--primary-green);
    text-shadow: 0 0 20px var(--primary-green);
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
}

.glitch-effect {
    animation: glitch 3s infinite;
}

@keyframes glitch {
    0%, 90%, 100% { text-shadow: 0 0 20px var(--primary-green); }
    92% { text-shadow: -2px 0 var(--secondary-cyan), 2px 0 var(--warning-red); }
    94% { text-shadow: 2px 0 var(--secondary-cyan), -2px 0 var(--warning-red); }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-cta {
    display: inline-block;
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

.neon-button {
    background: transparent;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    text-decoration: none;
    font-family: var(--font-mono);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px var(--border-glow), inset 0 0 10px var(--border-glow);
}

.neon-button:hover {
    background: var(--primary-green);
    color: var(--dark-bg);
    box-shadow: 0 0 30px var(--primary-green);
}

/* Section Styles */
.section-title {
    font-family: var(--font-mono);
    font-size: 2.25rem;
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 10px var(--border-glow);
}

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

.cyber-text {
    position: relative;
}

.cyber-text::before {
    content: '>';
    margin-right: 0.5rem;
    color: var(--secondary-cyan);
}

/* Content Blocks */
.matrix-border {
    border: 1px solid var(--primary-green);
    border-radius: 8px;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.05) 0%, transparent 100%);
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.1);
}

.terminal-style {
    background: var(--card-bg);
    border: 1px solid var(--border-glow);
    border-radius: 8px;
    padding: 2.5rem;
    position: relative;
}

.terminal-style::before {
    content: '● ● ●';
    position: absolute;
    top: 0.75rem;
    left: 1rem;
    color: var(--primary-green);
    font-size: 0.75rem;
    letter-spacing: 3px;
}

/* Author Section */
.author-section {
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.author-card {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding-top: 2rem;
}

.author-avatar img {
    width: 120px;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid var(--primary-green);
    box-shadow: 0 0 20px var(--border-glow);
}

.author-name {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.author-title {
    color: var(--secondary-cyan);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.author-bio {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* About Section */
.about-section {
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.content-text {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.9;
    text-align: justify;
}

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

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

.game-card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.hologram-card {
    position: relative;
}

.hologram-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    padding: 1px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-cyan), var(--accent-purple));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.hologram-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 255, 65, 0.2);
}

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

.game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.game-title {
    font-family: var(--font-mono);
    font-size: 1.25rem;
    color: var(--primary-green);
    padding: 1.5rem 1.5rem 0.75rem;
}

.game-description {
    color: var(--text-secondary);
    padding: 0 1.5rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

.game-link {
    display: inline-block;
    margin: 1.5rem;
    padding: 0.75rem 1.5rem;
    color: var(--primary-green);
    border: 1px solid var(--primary-green);
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.game-link:hover {
    background: var(--primary-green);
    color: var(--dark-bg);
}

/* Bonus Section */
.bonus-section {
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.bonus-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.bonus-image-container img {
    width: 100%;
    border-radius: 8px;
    border: 1px solid var(--border-glow);
}

.bonus-subtitle {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    color: var(--secondary-cyan);
    margin-bottom: 1rem;
}

.bonus-text {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.bonus-features {
    list-style: none;
    margin-top: 1.5rem;
}

.bonus-feature {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-primary);
    border-bottom: 1px solid rgba(0, 255, 65, 0.1);
}

.bonus-feature::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: bold;
}

/* Payment Section */
.payment-section {
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.payment-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    padding-top: 2rem;
}

.payment-image img {
    width: 100%;
    border-radius: 8px;
}

.payment-subtitle {
    font-family: var(--font-mono);
    font-size: 1.25rem;
    color: var(--secondary-cyan);
    margin: 1.5rem 0 0.75rem;
}

.payment-subtitle:first-of-type {
    margin-top: 0;
}

.payment-text {
    color: var(--text-secondary);
    line-height: 1.8;
}

.payment-limits {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(0, 255, 65, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--primary-green);
}

.payment-limits h4 {
    font-family: var(--font-mono);
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.payment-limits ul {
    list-style: none;
}

.payment-limits li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-family: var(--font-mono);
    font-size: 0.9rem;
}

/* License Section */
.license-section {
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.license-content {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.license-badge img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 3px solid var(--primary-green);
    box-shadow: 0 0 30px var(--border-glow);
}

.license-subtitle {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    color: var(--secondary-cyan);
    margin-bottom: 1rem;
}

.license-text {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Responsible Gaming */
.responsible-section {
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.responsible-content {
    padding-top: 2rem;
}

.responsible-text {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.responsible-subtitle {
    font-family: var(--font-mono);
    font-size: 1.25rem;
    color: var(--secondary-cyan);
    margin: 2rem 0 1rem;
}

.tools-list {
    list-style: none;
}

.tool-item {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 255, 65, 0.1);
    color: var(--text-secondary);
}

.tool-item strong {
    color: var(--primary-green);
}

.help-list {
    list-style: none;
    margin-top: 1rem;
}

.help-list li {
    padding: 0.5rem 0;
}

.help-list a {
    color: var(--secondary-cyan);
    text-decoration: none;
    transition: color 0.3s ease;
}

.help-list a:hover {
    color: var(--primary-green);
    text-decoration: underline;
}

.age-verification {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 51, 51, 0.1);
    border: 1px solid var(--warning-red);
    border-radius: 8px;
}

.age-badge img {
    width: 100px;
    height: 100px;
}

.age-text {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Support Section */
.support-section {
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.support-content {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.support-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 3px solid var(--secondary-cyan);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.support-text {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.support-subtitle {
    font-family: var(--font-mono);
    font-size: 1.25rem;
    color: var(--secondary-cyan);
    margin-bottom: 1rem;
}

.support-channels {
    list-style: none;
}

.channel-item {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 255, 65, 0.1);
    color: var(--text-secondary);
}

.channel-item strong {
    color: var(--primary-green);
}

/* FAQ Section */
.faq-section {
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.faq-content {
    padding-top: 2rem;
}

.faq-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 255, 65, 0.2);
}

.faq-question {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    color: var(--primary-green);
    margin-bottom: 0.75rem;
    cursor: pointer;
}

.faq-question::before {
    content: '? ';
    color: var(--secondary-cyan);
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
    padding-left: 1.5rem;
    border-left: 2px solid var(--border-glow);
}

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

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

.review-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
}

.review-header {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    margin-bottom: 1rem;
}

.reviewer-name {
    font-family: var(--font-mono);
    font-weight: 700;
    color: var(--primary-green);
}

.reviewer-location {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.review-rating {
    margin-left: auto;
}

.stars {
    color: #ffd700;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.review-text {
    color: var(--text-secondary);
    line-height: 1.8;
    font-style: italic;
}

.review-footer {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 255, 65, 0.1);
}

.review-date {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-family: var(--font-mono);
}

/* Live Casino Section */
.live-section {
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.live-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
}

.live-image img {
    width: 100%;
    border-radius: 8px;
    border: 1px solid var(--border-glow);
}

.live-text {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Footer */
.site-footer {
    background: var(--darker-bg);
    border-top: 1px solid var(--border-glow);
    margin-top: 4rem;
    padding-top: 4rem;
}

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

.footer-title {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-badges {
    display: flex;
    gap: 1rem;
}

.footer-badges img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
}

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

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

.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(--primary-green);
}

.footer-contact {
    font-style: normal;
}

.footer-contact p {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

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

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

.social-links a:hover {
    color: var(--secondary-cyan);
}

.payment-icons img {
    width: 100%;
    max-width: 300px;
    border-radius: 8px;
}

.footer-bottom {
    max-width: 1400px;
    margin: 3rem auto 0;
    padding: 2rem;
    border-top: 1px solid rgba(0, 255, 65, 0.1);
    text-align: center;
}

.copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.legal-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

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

.legal-links a:hover {
    color: var(--primary-green);
}

.disclaimer {
    color: var(--warning-red);
    font-size: 0.85rem;
    font-family: var(--font-mono);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .bonus-content,
    .payment-content,
    .live-content {
        grid-template-columns: 1fr;
    }
    
    .license-content,
    .support-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .author-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--darker-bg);
        flex-direction: column;
        padding: 1rem;
        border-bottom: 1px solid var(--border-glow);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-content {
        margin: 1rem;
        padding: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .games-grid,
    .reviews-container {
        grid-template-columns: 1fr;
    }
    
    .age-verification {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-badges {
        justify-content: center;
    }
    
    .social-links {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .brand-name {
        font-size: 1.2rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .matrix-border,
    .terminal-style {
        padding: 1.5rem;
    }
    
    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Print Styles */
@media print {
    .site-header,
    .site-footer,
    .cta-button,
    .hero-cta {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .section-title {
        color: black;
    }
}
