/* Terms and Conditions Page CSS */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    min-height: 100vh;
    color: #ffffff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    margin-left: 320px;
}

/* Sidebar Styles */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100vh;
    background: linear-gradient(180deg, #1a1a1a 0%, #000000 100%);
    border-right: 2px solid #333;
    padding: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.logo-section {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #333;
}

.menu-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: #cccccc;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-bottom: 5px;
}

.menu-item:hover {
    background: rgba(255, 255, 0, 0.1);
    color: #ffff00;
    transform: translateX(5px);
}

.menu-item.active {
    background: linear-gradient(45deg, #ffff00, #ff8800);
    color: #000;
    font-weight: bold;
}

.menu-icon {
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Mobile Header */
.mobile-header {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    background: linear-gradient(45deg, #ffff00, #ff8800);
    border: none;
    border-radius: 8px;
    color: #000;
    font-size: 1.3rem;
    padding: 10px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 30px;
    padding: 30px 0;
    border-bottom: 2px solid #333;
}

.header h1 {
    font-size: 3rem;
    background: linear-gradient(45deg, #ffffff, #ffff00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(255, 255, 0, 0.3);
}

.header p {
    color: #cccccc;
    font-size: 1.2rem;
}

.glow {
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 20px rgba(255, 255, 0, 0.3); }
    to { text-shadow: 0 0 30px rgba(255, 255, 0, 0.6); }
}

/* Update Info */
.update-info {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border: 2px solid #333;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: center;
}

.update-info p {
    color: #cccccc;
    margin-bottom: 5px;
}

.update-info i {
    color: #ffff00;
    margin-right: 8px;
}

/* Terms Section */
.terms-section {
    margin-bottom: 40px;
}

.term-card {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border: 2px solid #333;
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 25px;
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.term-card:hover {
    border-color: #ffff00;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 0, 0.1);
}

.term-number {
    background: linear-gradient(45deg, #ffff00, #ff8800);
    color: #000000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 255, 0, 0.3);
}

.term-content {
    flex: 1;
}

.term-content h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.term-content h3 i {
    color: #ffff00;
}

.term-content > p {
    color: #cccccc;
    margin-bottom: 15px;
    line-height: 1.6;
}

.term-details ul {
    list-style: none;
    padding-left: 0;
}

.term-details li {
    color: #dddddd;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.term-details li:before {
    content: "✓";
    color: #00ff00;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.highlight {
    color: #ffff00;
    font-weight: bold;
    background: rgba(255, 255, 0, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
}

/* Notice Section */
.notice-section {
    background: linear-gradient(135deg, #2a1a1a, #3a2a2a);
    border: 2px solid #ff6b6b;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
}

.notice-title {
    color: #ff6b6b;
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
}

.notice-content p {
    color: #ffdddd;
    margin-bottom: 15px;
    padding: 10px;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 8px;
    border-left: 4px solid #ff6b6b;
}

.notice-content strong {
    color: #ff6b6b;
}

/* Acceptance Section */
.acceptance-section {
    background: linear-gradient(135deg, #1a2a1a, #2a3a2a);
    border: 2px solid #00ff00;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    text-align: center;
}

.acceptance-title {
    color: #00ff00;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.acceptance-content p {
    color: #ddffdd;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.acceptance-checkbox {
    margin-bottom: 25px;
}

.checkbox-container {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    color: #ffffff;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.checkbox-container:hover {
    background: rgba(255, 255, 255, 0.1);
}

.checkbox-container input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    accent-color: #00ff00;
}

.action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.accept-btn, .download-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.accept-btn {
    background: #666666;
    color: #cccccc;
}

.accept-btn.enabled {
    background: linear-gradient(45deg, #00ff00, #00cc00);
    color: #000000;
}

.accept-btn:disabled {
    cursor: not-allowed;
}

.accept-btn.enabled:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 255, 0, 0.3);
}

.download-btn {
    background: linear-gradient(45deg, #ffff00, #ff8800);
    color: #000000;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 0, 0.3);
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border: 2px solid #333;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
}

.contact-title {
    color: #ffff00;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.contact-section p {
    color: #cccccc;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.contact-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.contact-btn.whatsapp {
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: #ffffff;
}

.contact-btn.telegram {
    background: linear-gradient(45deg, #0088cc, #005f87);
    color: #ffffff;
}

.contact-btn.email {
    background: linear-gradient(45deg, #ff6b6b, #cc5555);
    color: #ffffff;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        margin-left: 0;
        padding: 15px;
        padding-top: 80px;
    }
    
    .mobile-header {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 70px;
        background: linear-gradient(180deg, #1a1a1a 0%, #000000 100%);
        border-bottom: 2px solid #333;
        z-index: 1001;
        align-items: center;
        justify-content: space-between;
        padding: 0 20px;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .sidebar {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        transition: all 0.3s ease;
    }
    
    .sidebar.active {
        left: 0;
    }
    
    .header h1 {
        font-size: 2rem;
    }
    
    .term-card {
        flex-direction: column;
        text-align: center;
    }
    
    .term-number {
        align-self: center;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .accept-btn, .download-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-btn {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .mobile-header {
        padding: 0 15px;
        height: 65px;
    }
    
    .container {
        padding: 10px;
        padding-top: 75px;
    }
    
    .sidebar {
        width: 250px;
        top: 65px;
        height: calc(100vh - 65px);
    }
    
    .header h1 {
        font-size: 1.5rem;
    }
    
    .term-card {
        padding: 20px;
    }
    
    .term-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .term-content h3 {
        font-size: 1.1rem;
    }
}