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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #121212, #1a1a1a);
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

/* Header */
.static-header {
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 2px solid #7f5af0;
    box-shadow: 0 2px 20px rgba(127, 90, 240, 0.3);
}

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

.back-link {
    color: #ffcc00;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    border: 2px solid transparent;
}

.back-link:hover {
    color: #7f5af0;
    border-color: #7f5af0;
    box-shadow: 0 0 15px rgba(127, 90, 240, 0.5);
    transform: translateX(-5px);
}

.logo-text {
    font-family: 'Fredoka One', cursive;
    font-size: 1.8rem;
    color: #ffcc00;
    text-shadow: 0 0 20px rgba(255, 204, 0, 0.5);
}

.logo-coin {
    animation: spin 3s linear infinite;
    display: inline-block;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Main Content */
.static-main {
    flex: 1;
    padding: 3rem 0;
}

.page-title {
    font-family: 'Fredoka One', cursive;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffcc00, #7f5af0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content {
    background: linear-gradient(145deg, #2a2a2a, #1e1e1e);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid #7f5af0;
    box-shadow: 0 20px 40px rgba(127, 90, 240, 0.2);
}

.last-updated {
    font-style: italic;
    color: #ffcc00;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 0.9rem;
}

/* Content Sections */
section {
    margin-bottom: 2.5rem;
}

section h2 {
    color: #ffcc00;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #7f5af0;
    padding-bottom: 0.5rem;
}

section h3 {
    color: #7f5af0;
    font-size: 1.2rem;
    margin: 1.5rem 0 0.5rem 0;
}

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

section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

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

section a {
    color: #ffcc00;
    text-decoration: none;
    transition: color 0.3s ease;
}

section a:hover {
    color: #7f5af0;
    text-shadow: 0 0 5px rgba(127, 90, 240, 0.5);
}

/* Contact Page Styles */
.contact-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-intro p {
    font-size: 1.1rem;
    color: #e2e2e2;
}

.contact-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-form {
    background: rgba(42, 42, 42, 0.5);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #7f5af0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #ffcc00;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background: #1a1a1a;
    border: 2px solid #333;
    border-radius: 8px;
    color: #ffffff;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7f5af0;
    box-shadow: 0 0 10px rgba(127, 90, 240, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    width: 100%;
    background: linear-gradient(135deg, #ffcc00, #ff8800);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #121212;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-2px);
}

.submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.button-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.submit-button:hover .button-glow {
    left: 100%;
}

.contact-info {
    background: rgba(42, 42, 42, 0.5);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #ffcc00;
}

.contact-info h3 {
    color: #ffcc00;
    margin-bottom: 1.5rem;
    text-align: center;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(18, 18, 18, 0.5);
    border-radius: 10px;
}

.info-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.info-content h4 {
    color: #7f5af0;
    margin-bottom: 0.5rem;
}

.info-content p {
    color: #e2e2e2;
    margin: 0;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #7f5af0;
}

.faq-section h2 {
    color: #ffcc00;
    text-align: center;
    margin-bottom: 2rem;
}

.faq-item {
    background: rgba(42, 42, 42, 0.3);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    border-left: 4px solid #7f5af0;
}

.faq-item h4 {
    color: #ffcc00;
    margin-bottom: 0.5rem;
}

.faq-item p {
    color: #e2e2e2;
    margin: 0;
}

/* Footer */
.static-footer {
    background: #0a0a0a;
    padding: 1.5rem 0;
    border-top: 2px solid #7f5af0;
    box-shadow: 0 -5px 20px rgba(127, 90, 240, 0.2);
    margin-top: auto;
}

.static-footer .container {
    text-align: center;
}

.static-footer p {
    color: #e2e2e2;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .static-header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .content {
        padding: 2rem;
    }
    
    .contact-form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    section h2 {
        font-size: 1.3rem;
    }
    
    section ul {
        margin-left: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .page-title {
        font-size: 1.5rem;
    }
    
    .content {
        padding: 1.5rem;
    }
    
    .contact-form,
    .contact-info {
        padding: 1.5rem;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
    }
    
    .info-icon {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}

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

.content {
    animation: fadeIn 0.8s ease-out;
}