/* Auxiliary Pages CSS - CybraClub */

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

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0a0a0a;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 { 
    font-size: 2.5rem; 
    color: #00ff88;
}

h2 { 
    font-size: 2rem; 
    color: #00ff88;
    margin-bottom: 1.5rem;
}

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

h4 { 
    font-size: 1.25rem; 
    color: #cccccc;
}

p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #cccccc;
}

a {
    color: #00ff88;
    text-decoration: none;
}

a:hover {
    color: #00cc6a;
}

ul, ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

li {
    margin-bottom: 0.5rem;
    color: #cccccc;
}

strong {
    color: #ffffff;
}

/* Header */
.header {
    background: #111111;
    padding: 20px 0;
    border-bottom: 1px solid #333333;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    width: 40px;
    height: 40px;
}

.brand-name {
    font-size: 1.8rem;
    color: #00ff88;
    margin: 0;
}

.back-link {
    background: transparent;
    color: #00ff88;
    border: 2px solid #00ff88;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-link:hover {
    background: #00ff88;
    color: #000000;
}

/* Main Content */
.main-content {
    padding: 60px 0;
    min-height: calc(100vh - 200px);
}

.page-header {
    text-align: center;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #333333;
}

.page-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}

.page-header-image {
    width: 100%;
    max-width: 800px;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid #333333;
    margin: 2rem auto 0;
    display: block;
}

.section-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #333333;
    margin: 1.5rem 0;
}

/* Content Sections */
.content-section {
    background: #1a1a1a;
    padding: 3rem;
    margin-bottom: 3rem;
    border-radius: 12px;
    border: 1px solid #333333;
}

.content-section h2 {
    border-bottom: 2px solid #00ff88;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
}

.content-section h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-section p:last-child {
    margin-bottom: 0;
}

/* Special Content Blocks */
.highlight-box {
    background: linear-gradient(135deg, #0f2a1a, #1a1a1a);
    border: 1px solid #00ff88;
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
}

.highlight-box h3 {
    color: #00ff88;
    margin-top: 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.info-card {
    background: #2a2a2a;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #444444;
}

.info-card h4 {
    color: #00ff88;
    margin-bottom: 1rem;
}

/* Contact Information */
.contact-info {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #333333;
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Footer */
.footer {
    background: #111111;
    padding: 40px 0 20px;
    border-top: 1px solid #333333;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    width: 40px;
    height: 40px;
}

.footer-brand h3 {
    color: #00ff88;
    margin: 0;
}

.footer-brand p {
    color: #cccccc;
    margin: 0;
}

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

.link-group h4 {
    color: #00ff88;
    margin-bottom: 1rem;
}

.link-group ul {
    list-style: none;
    padding: 0;
}

.link-group li {
    padding: 0.25rem 0;
    margin: 0;
}

.link-group a {
    color: #cccccc;
    text-decoration: none;
}

.link-group a:hover {
    color: #00ff88;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333333;
    color: #888888;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    border-top: 2px solid #00ff88;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-text {
    flex: 1;
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.4;
}

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

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

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

.cookie-btn.accept:hover {
    background: #00cc6a;
}

.cookie-btn.reject {
    background: transparent;
    color: #cccccc;
    border: 1px solid #666666;
}

.cookie-btn.reject:hover {
    background: #333333;
    border-color: #888888;
}

.cookie-btn.customize {
    background: transparent;
    color: #00ff88;
    border: 1px solid #00ff88;
}

.cookie-btn.customize:hover {
    background: rgba(0, 255, 136, 0.1);
}

/* Cookie Customization Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: #1a1a1a;
    border: 2px solid #00ff88;
    border-radius: 8px;
    padding: 2rem;
    max-width: 500px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-modal h3 {
    color: #00ff88;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #2a2a2a;
    border-radius: 4px;
}

.cookie-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.cookie-category h4 {
    color: #ffffff;
    margin: 0;
    font-size: 1rem;
}

.cookie-toggle {
    position: relative;
    width: 50px;
    height: 24px;
    background: #666666;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cookie-toggle.active {
    background: #00ff88;
}

.cookie-toggle.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-toggle::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: #ffffff;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.cookie-toggle.active::after {
    transform: translateX(26px);
}

.cookie-category p {
    color: #cccccc;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
}

.cookie-modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #333333;
}

.cookie-modal-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-modal-btn.save {
    background: #00ff88;
    color: #000000;
}

.cookie-modal-btn.save:hover {
    background: #00cc6a;
}

.cookie-modal-btn.cancel {
    background: transparent;
    color: #cccccc;
    border: 1px solid #666666;
}

.cookie-modal-btn.cancel:hover {
    background: #333333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .cookie-actions {
        flex-wrap: wrap;
        justify-content: center;
    }

    .cookie-modal-content {
        margin: 10px;
        padding: 1.5rem;
    }

    .cookie-modal-actions {
        flex-direction: column;
    }

    .header-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .page-title {
        font-size: 2rem;
    }

    .page-header-image {
        height: 200px;
        margin: 1.5rem auto 0;
    }

    .section-image {
        height: 200px;
        margin: 1rem 0;
    }

    .content-section {
        padding: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .main-content {
        padding: 40px 0;
    }

    .content-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .brand-name {
        font-size: 1.5rem;
    }

    .page-header-image {
        height: 180px;
        margin: 1rem auto 0;
    }

    .section-image {
        height: 150px;
    }
}