/* ===== RETRO 80S COMMODORE STYLE ===== */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier Prime', monospace;
    background: #000000;
    color: #00ff00;
    line-height: 1.4;
    min-height: 100vh;
    overflow-x: hidden;
    font-size: 16px;
}

/* Ensure proper text rendering on mobile */
@media (max-width: 768px) {
    body {
        font-size: 14px;
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }
}

/* Scanline effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        transparent 0%,
        rgba(0, 255, 0, 0.03) 50%,
        transparent 100%
    );
    background-size: 100% 4px;
    pointer-events: none;
    z-index: 1000;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Retro Header */
.retro-header {
    background: #000000;
    border-bottom: 2px solid #00ff00;
    padding: 2rem 0;
    text-align: center;
    position: relative;
}

.retro-logo {
    font-family: 'Courier Prime', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: #00ff00;
    text-shadow: 0 0 10px #00ff00;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.cursor-blink {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.retro-tagline {
    font-size: 1rem;
    color: #00aa00;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Retro Navigation */
.retro-nav {
    background: #000000;
    border-bottom: 1px solid #00ff00;
    padding: 1rem 0;
}

.static-menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.nav-link {
    color: #00aa00;
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    border: 1px solid #00aa00;
    transition: all 0.3s ease;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    font-size: 0.8rem;
}

.nav-link:hover {
    background: #00ff00;
    color: #000000;
    border-color: #00ff00;
    box-shadow: 0 0 10px #00ff00;
    text-shadow: none;
}

/* Retro Main Content */
.retro-main {
    padding: 2rem 0;
}

.retro-hero {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    border: 2px solid #00ff00;
    background: rgba(0, 255, 0, 0.05);
}

.retro-hero h2 {
    font-size: 2rem;
    color: #00ff00;
    text-shadow: 0 0 10px #00ff00;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.loading-bar {
    width: 100%;
    height: 20px;
    border: 2px solid #00ff00;
    background: #000000;
    margin: 1rem 0;
    position: relative;
    overflow: hidden;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, #00ff00, #00aa00);
    width: 0%;
    transition: width 2s ease;
    box-shadow: 0 0 10px #00ff00;
}

.retro-hero p {
    color: #00aa00;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

/* Retro Tabs */
.retro-tabs {
    margin-top: 2rem;
}

.tab-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 2rem;
    justify-content: center;
}

.tab-btn {
    background: #000000;
    color: #00aa00;
    border: 2px solid #00ff00;
    border-right: none;
    padding: 1rem 2rem;
    font-family: 'Courier Prime', monospace;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tab-btn:last-child {
    border-right: 2px solid #00ff00;
}

.tab-btn:hover {
    background: rgba(0, 255, 0, 0.1);
    color: #00ff00;
    text-shadow: 0 0 5px #00ff00;
}

.tab-btn.active {
    background: #00ff00;
    color: #000000;
    text-shadow: none;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 4px;
    background: #00ff00;
}

/* Tab Content */
.tab-content {
    min-height: 400px;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.5s ease;
}

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

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Retro Grid */
.retro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 2rem 0;
}

/* Retro Cards */
.retro-card {
    background: #000000;
    border: 2px solid #00ff00;
    padding: 1.5rem;
    text-decoration: none;
    color: #00aa00;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: block;
}

.retro-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.retro-card:hover::before {
    left: 100%;
}

.retro-card:hover {
    border-color: #00ff00;
    box-shadow: 0 0 20px #00ff00;
    color: #00ff00;
    text-shadow: 0 0 5px #00ff00;
    transform: translateY(-5px);
}

.card-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.retro-card:hover .card-icon {
    opacity: 1;
    transform: scale(1.1);
}

.retro-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #00ff00;
    letter-spacing: 1px;
}

.retro-card p {
    font-size: 0.9rem;
    color: #00aa00;
    font-style: italic;
}

/* Retro Footer */
.retro-footer {
    background: #000000;
    border-top: 2px solid #00ff00;
    padding: 2rem 0;
    text-align: center;
    margin-top: 4rem;
}

.retro-footer p {
    color: #00aa00;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Prevent horizontal overflow */
    * {
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Header adjustments */
    .retro-header {
        padding: 1rem 0;
    }
    
    .retro-logo {
        font-size: 1.3rem;
        letter-spacing: 1px;
        word-break: break-word;
    }
    
    .retro-tagline {
        font-size: 0.7rem;
        letter-spacing: 0.5px;
        line-height: 1.3;
    }
    
    /* Navigation improvements */
    .retro-nav {
        padding: 0.75rem 0;
    }
    
    .static-menu {
        gap: 0.5rem;
    }
    
    .nav-link {
        width: calc(50% - 0.25rem);
        text-align: center;
        padding: 0.5rem 0.25rem;
        font-size: 0.65rem;
        letter-spacing: 0.5px;
    }
    
    /* Tab buttons */
    .tab-buttons {
        flex-direction: column;
    }
    
    .tab-btn {
        border: 2px solid #00ff00;
        border-bottom: none;
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
    
    .tab-btn:last-child {
        border-bottom: 2px solid #00ff00;
    }
    
    /* Hero section */
    .retro-hero {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .retro-hero h2 {
        font-size: 1.3rem;
        letter-spacing: 1px;
    }
    
    .retro-hero p {
        font-size: 0.85rem;
    }
    
    /* Grid layout */
    .retro-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Tool cards */
    .retro-card {
        padding: 1rem;
    }
    
    .retro-card h3,
    .retro-card h4 {
        font-size: 0.9rem;
        letter-spacing: 0.5px;
    }
    
    .retro-card p {
        font-size: 0.75rem;
    }
    
    .card-icon {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    /* Tool page */
    .tool-page {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .tool-title {
        font-size: 1.3rem;
    }
    
    .tool-description {
        font-size: 0.85rem;
    }
    
    .tool-page h3,
    .tool-page h4 {
        font-size: 1rem;
    }
    
    .tool-page p,
    .tool-page div,
    .tool-page span,
    .tool-page li {
        font-size: 0.85rem;
        word-break: break-word;
        line-height: 1.5;
    }
    
    .tool-page ul,
    .tool-page ol {
        padding-left: 1.2rem;
    }
    
    .tool-page li {
        margin-bottom: 0.3rem;
    }
    
    /* Form elements */
    .retro-input,
    .retro-textarea,
    .retro-select {
        font-size: 0.9rem;
        padding: 0.6rem;
    }
    
    .retro-btn {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
        margin: 0.5rem 0.3rem;
    }
    
    .btn, 
    .retro-btn,
    .btn-secondary {
        margin: 0.5rem 0.3rem !important;
        display: inline-block;
        min-width: auto;
    }
    
    .text-center .btn,
    .text-center .retro-btn {
        margin: 0.8rem 0.5rem !important;
    }
    
    /* Output sections */
    .retro-output {
        font-size: 0.85rem;
        padding: 1rem;
    }
    
    /* Result boxes */
    .result {
        padding: 1rem;
        margin: 1rem 0;
        font-size: 0.85rem;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    
    .result * {
        font-size: 0.85rem !important;
        line-height: 1.4;
    }
    
    .result h2 {
        font-size: 1.5rem !important;
        margin-bottom: 1rem !important;
    }
    
    .result h3,
    .result h4 {
        font-size: 1rem !important;
        margin-bottom: 0.5rem;
    }
    
    .result strong {
        font-size: 0.9rem !important;
    }
    
    .result pre,
    .result code {
        font-size: 0.75rem !important;
        word-break: break-all;
        white-space: pre-wrap;
    }
    
    .result div[style*="grid"] {
        grid-template-columns: 1fr !important;
        gap: 0.5rem !important;
    }
    
    .result button {
        font-size: 0.8rem !important;
        padding: 0.5rem 0.8rem !important;
        margin: 0.8rem 0.5rem !important;
    }
    
    /* Mobile table overflow fixes */
    .result table {
        font-size: 0.75rem !important;
        width: 100% !important;
    }
    
    .result th, 
    .result td {
        font-size: 0.75rem !important;
        padding: 0.5rem !important;
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        max-width: 120px !important;
    }
    
    .result div[style*="overflow-x: auto"] {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }
    
    /* Prevent text overflow in result containers */
    .result * {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Footer */
    .retro-footer {
        font-size: 0.75rem;
        padding: 1rem 0;
    }
    
    /* Container padding */
    .container {
        padding: 0 15px;
    }
    
    /* Main content */
    .retro-main {
        padding: 1rem 0;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .retro-logo {
        font-size: 1rem;
        letter-spacing: 0.5px;
    }
    
    .retro-tagline {
        font-size: 0.6rem;
    }
    
    .nav-link {
        font-size: 0.6rem;
        padding: 0.4rem 0.2rem;
    }
    
    .retro-hero h2 {
        font-size: 1.1rem;
    }
    
    .retro-hero p {
        font-size: 0.75rem;
    }
    
    .retro-card h3,
    .retro-card h4 {
        font-size: 0.8rem;
        letter-spacing: 0px;
    }
    
    .retro-card p {
        font-size: 0.7rem;
    }
    
    .card-icon {
        font-size: 1.3rem;
        margin-bottom: 0.3rem;
    }
    
    .tool-title {
        font-size: 1.1rem;
    }
    
    .tool-description {
        font-size: 0.75rem;
        line-height: 1.4;
    }
    
    .tool-page h3,
    .tool-page h4 {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .tool-page p,
    .tool-page div,
    .tool-page span,
    .tool-page li {
        font-size: 0.75rem;
        line-height: 1.4;
        word-break: break-word;
    }
    
    .tool-page ul,
    .tool-page ol {
        padding-left: 1rem;
    }
    
    .retro-btn {
        font-size: 0.8rem;
        padding: 0.5rem 0.8rem;
        margin: 0.6rem 0.4rem;
    }
    
    .btn,
    .btn-secondary {
        font-size: 0.8rem;
        padding: 0.5rem 0.8rem;
        margin: 0.6rem 0.4rem !important;
    }
    
    .text-center .btn,
    .text-center .retro-btn {
        margin: 1rem 0.5rem !important;
        display: block;
        width: calc(100% - 1rem);
        max-width: 250px;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .result {
        padding: 0.75rem;
        font-size: 0.75rem;
    }
    
    .result * {
        font-size: 0.75rem !important;
    }
    
    .result h2 {
        font-size: 1.2rem !important;
        margin-bottom: 0.8rem !important;
    }
    
    .result h3,
    .result h4 {
        font-size: 0.9rem !important;
    }
    
    .result pre,
    .result code {
        font-size: 0.7rem !important;
    }
    
    .result button {
        font-size: 0.7rem !important;
        padding: 0.4rem 0.6rem !important;
    }
    
    .result div[style*="text-align: center"] {
        margin-bottom: 1rem !important;
    }
    
    /* Extra small screen table fixes */
    .result table {
        font-size: 0.65rem !important;
    }
    
    .result th, 
    .result td {
        font-size: 0.65rem !important;
        padding: 0.3rem !important;
        max-width: 100px !important;
    }
    
    .result td[style*="font-family: monospace"] {
        font-size: 0.6rem !important;
    }
}

/* Ultra small screens (320px and below) */
@media (max-width: 320px) {
    body {
        font-size: 12px;
    }
    
    .retro-logo {
        font-size: 0.9rem;
        letter-spacing: 0px;
    }
    
    .retro-tagline {
        font-size: 0.5rem;
    }
    
    .nav-link {
        font-size: 0.55rem;
        padding: 0.3rem 0.1rem;
        letter-spacing: 0px;
    }
    
    .retro-hero h2 {
        font-size: 1rem;
    }
    
    .retro-hero p {
        font-size: 0.7rem;
    }
    
    .retro-card h3,
    .retro-card h4 {
        font-size: 0.75rem;
        letter-spacing: 0px;
    }
    
    .retro-card p {
        font-size: 0.65rem;
    }
    
    .tool-title {
        font-size: 1rem;
    }
    
    .tool-description {
        font-size: 0.7rem;
        line-height: 1.3;
    }
    
    .tool-page h3,
    .tool-page h4 {
        font-size: 0.8rem;
        margin-bottom: 0.4rem;
        word-break: break-word;
    }
    
    .tool-page p,
    .tool-page div,
    .tool-page span,
    .tool-page li {
        font-size: 0.65rem;
        line-height: 1.3;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    
    .tool-page ul,
    .tool-page ol {
        padding-left: 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .tool-page li {
        margin-bottom: 0.2rem;
    }
    
    .tool-page .mt-2 {
        margin-top: 1rem !important;
    }
    
    .tool-page strong {
        font-size: 0.65rem;
    }
    
    /* Ultra aggressive text wrapping for 320px */
    .tool-page,
    .tool-page * {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
        hyphens: auto !important;
        max-width: 100% !important;
    }
    
    .tool-page div[style*="grid"] {
        grid-template-columns: 1fr !important;
        gap: 0.5rem !important;
    }
    
    .tool-page ul,
    .tool-page ol {
        padding-left: 0.5rem;
        margin: 0.5rem 0;
    }
    
    .tool-page li {
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        line-height: 1.2;
        margin-bottom: 0.3rem;
    }
    
    /* Force break long words */
    .tool-page strong,
    .tool-page b {
        word-break: break-word !important;
        display: inline-block;
        max-width: 100%;
    }
    
    .retro-btn, .btn {
        font-size: 0.65rem;
        padding: 0.4rem 0.5rem;
        margin: 0.8rem 0.3rem;
    }
    
    .text-center .btn,
    .text-center .retro-btn,
    .text-center .btn-secondary {
        margin: 1.2rem auto !important;
        display: block;
        width: calc(100% - 1.5rem);
        max-width: 200px;
    }
    
    /* Specific spacing for copy buttons and action buttons */
    .btn-secondary {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }
    
    .result button {
        margin: 0.8rem 0.5rem !important;
    }
    
    /* Ultra small result boxes */
    .result {
        padding: 0.5rem;
        font-size: 0.65rem;
        margin: 0.5rem 0;
    }
    
    .result * {
        font-size: 0.65rem !important;
        max-width: 100% !important;
    }
    
    .result h2 {
        font-size: 1rem !important;
        margin-bottom: 0.5rem !important;
        word-break: break-word !important;
    }
    
    .result h3,
    .result h4 {
        font-size: 0.8rem !important;
        margin-bottom: 0.3rem !important;
    }
    
    .result table {
        font-size: 0.55rem !important;
        width: 100% !important;
    }
    
    .result th, 
    .result td {
        font-size: 0.55rem !important;
        padding: 0.2rem !important;
        max-width: 80px !important;
        word-break: break-all !important;
        overflow-wrap: break-word !important;
        white-space: normal !important;
    }
    
    .result td[style*="font-family: monospace"] {
        font-size: 0.5rem !important;
    }
    
    .result button {
        font-size: 0.6rem !important;
        padding: 0.3rem 0.5rem !important;
        margin: 0.3rem 0 !important;
    }
    
    .result pre,
    .result code {
        font-size: 0.6rem !important;
        word-break: break-all !important;
        white-space: pre-wrap !important;
        overflow-wrap: break-word !important;
    }
    
    /* Force all text to wrap */
    .result, .result * {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
    }
    
    .container {
        padding: 0 10px;
    }
    
    /* Additional ultra-small fixes for content sections */
    .tool-page div {
        max-width: 100% !important;
        overflow: hidden !important;
    }
    
    /* Target specific problematic elements */
    .tool-page div[style*="minmax"] {
        display: block !important;
        grid-template-columns: none !important;
    }
    
    .tool-page div[style*="repeat"] {
        display: block !important;
        grid-template-columns: none !important;
    }
    
    /* Override any grid with minmax that causes overflow */
    .tool-page div[style*="minmax(300px"] {
        display: block !important;
        grid-template-columns: 1fr !important;
    }
    
    .tool-page div[style*="minmax(250px"] {
        display: block !important;
        grid-template-columns: 1fr !important;
    }
    
    .tool-page div[style*="minmax(200px"] {
        display: block !important;
        grid-template-columns: 1fr !important;
    }
}

/* Tablet breakpoint */
@media (min-width: 769px) and (max-width: 1024px) {
    .retro-logo {
        font-size: 2rem;
    }
    
    .nav-link {
        font-size: 0.75rem;
        padding: 0.5rem 0.6rem;
    }
    
    .retro-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .retro-hero h2 {
        font-size: 1.75rem;
    }
}

/* Tool Page Specific Styles */
.tool-page {
    background: #000000;
    border: 2px solid #00ff00;
    padding: 2rem;
    margin: 2rem 0;
}

.tool-title {
    color: #00ff00;
    font-size: 2rem;
    text-shadow: 0 0 10px #00ff00;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tool-description {
    color: #00aa00;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.tool-page > div,
.tool-page > p,
.tool-page #ipDisplay,
.tool-page #result,
.tool-page #output,
.tool-page [id*="result"],
.tool-page [id*="Result"],
.tool-page [id*="display"],
.tool-page [id*="Display"],
.tool-page [id*="output"],
.tool-page [id*="Output"] {
    font-size: inherit;
    line-height: 1.6;
}

/* Form Elements */
.tool-input {
    margin-bottom: 1.5rem;
}

.tool-input label {
    display: block;
    color: #00ff00;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

input, textarea, select {
    width: 100%;
    padding: 1rem;
    background: #000000;
    border: 2px solid #00ff00;
    color: #00ff00;
    font-family: 'Courier Prime', monospace;
    font-size: 1rem;
    transition: all 0.3s ease;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    box-shadow: 0 0 10px #00ff00;
    text-shadow: 0 0 5px #00ff00;
}

/* Buttons */
.btn {
    background: #000000;
    color: #00ff00;
    border: 2px solid #00ff00;
    padding: 1rem 2rem;
    font-family: 'Courier Prime', monospace;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
}

.btn:hover {
    background: #00ff00;
    color: #000000;
    text-shadow: none;
    box-shadow: 0 0 20px #00ff00;
}

.btn-secondary {
    border-color: #00aa00;
    color: #00aa00;
}

.btn-secondary:hover {
    background: #00aa00;
    color: #000000;
}

/* Results */
.result {
    background: rgba(0, 255, 0, 0.05);
    border: 2px solid #00ff00;
    padding: 2rem;
    margin: 2rem 0;
}

.result-success {
    border-color: #00ff00;
}

.result-error {
    border-color: #ff0000;
    color: #ff0000;
}

/* Utility Classes */
.hidden {
    display: none;
}

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

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }


/* Glitch effect for headers */
@keyframes glitch {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

.retro-logo:hover {
    animation: glitch 0.3s ease-in-out;
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000000;
    border-top: 3px solid #00ff00;
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 255, 0, 0.3);
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.cookie-consent.hidden { display: none; }

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-consent-text {
    flex: 1;
    min-width: 300px;
    color: #00ff00;
    line-height: 1.6;
}

.cookie-consent-text h3 {
    color: #00ff00;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.cookie-consent-text p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.cookie-consent-text a {
    color: #00ffff;
    text-decoration: underline;
}

.cookie-consent-text a:hover { color: #ffffff; }

.cookie-consent-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-consent-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #00ff00;
    background: #000000;
    color: #00ff00;
    cursor: pointer;
    font-family: 'Courier Prime', monospace;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.cookie-consent-btn:hover {
    background: #00ff00;
    color: #000000;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
}

.cookie-consent-btn-accept {
    background: #00ff00;
    color: #000000;
}

.cookie-consent-btn-accept:hover {
    background: #000000;
    color: #00ff00;
}

@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    .cookie-consent-buttons {
        width: 100%;
        justify-content: center;
    }
    .cookie-consent-btn {
        flex: 1;
        min-width: 120px;
    }
}
