/* Global Styles - 2025 Endxel Network */
:root {
    --primary-color: #9b59b6;
    --primary-gradient: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
    --secondary-color: #8e44ad;
    --accent-color: #6c3483;
    --dark-bg: #0f0f23;
    --darker-bg: #16213e;
    --card-bg: #1a1a2e;
    --light-color: #f4f4f4;
    --text-color: #ffffff;
    --muted-text: #a0a0a0;
    --border-color: rgba(155, 89, 182, 0.2);
    --border-hover: rgba(155, 89, 182, 0.4);
    --success-color: #27ae60;
    --warning-color: #f39c12;
    --danger-color: #e74c3c;
    --info-color: #3498db;
    --glass-effect: rgba(255, 255, 255, 0.05);
    --shadow-light: 0 4px 20px rgba(155, 89, 182, 0.1);
    --shadow-heavy: 0 8px 32px rgba(0, 0, 0, 0.3);
    --neon-glow: 0 0 20px rgba(155, 89, 182, 0.5);
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://cdn.discordapp.com/attachments/1361789153569673583/1390810859302944878/bg.png?ex=68699d0c&is=68684b8c&hm=035921bd84373ee4b4d8ee590e47a0ef24332347225f697cf96fc42bbe5d6115&');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.15;
    z-index: -1;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.highlight {
    color: var(--primary-color);
    font-weight: 700;
}

/* Header Styles - 2025 */
header {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    padding: 8px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-heavy);
    border-bottom: 1px solid var(--border-color);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 60px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.logo-text h1 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 2px;
}

nav ul {
    display: flex;
    gap: 30px;
}

nav ul li {
    margin-left: 0;
}

nav ul li a {
    color: var(--muted-text);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
    position: relative;
}

nav ul li a:hover {
    color: var(--primary-color);
    background: var(--glass-effect);
}

nav ul li a.active {
    color: var(--primary-color);
    background: var(--glass-effect);
    border: 1px solid var(--border-color);
    font-weight: 600;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: width 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 80%;
}

/* Server Status */
.server-status {
    text-align: right;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
}

.status-indicator i {
    font-size: 0.8rem;
}

.status-indicator i.online {
    color: var(--success-color);
}

.status-indicator i.offline {
    color: var(--danger-color);
}

.player-count {
    color: var(--muted-text);
    font-size: 0.9rem;
}

/* Mobile Navigation */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    background: rgba(155, 89, 182, 0.1);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.mobile-nav-toggle:hover {
    background: rgba(155, 89, 182, 0.2);
    box-shadow: var(--shadow-light);
}

.mobile-nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 2px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-nav-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Admin Link Special Styling */
nav ul li a.admin-link {
    background: var(--primary-gradient);
    color: white;
    border-radius: 8px;
    padding: 10px 16px;
    font-weight: 600;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

nav ul li a.admin-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--neon-glow);
}

/* Hero Section */
.hero {
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.hero h1 {
    font-size: 3.8rem;
    margin-bottom: 20px;
    font-family: 'Minecraft', sans-serif;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(155, 89, 182, 0.5);
    letter-spacing: 2px;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 20px rgba(155, 89, 182, 0.3));
    }
    to {
        filter: drop-shadow(0 0 30px rgba(155, 89, 182, 0.8));
    }
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.server-status {
    margin: 40px 0;
}

.status-box {
    background: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: var(--shadow-heavy);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.status-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-gradient);
}

.status-box h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.hero #player-count {
    font-size: 1.2rem;
    margin-bottom: 15px;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}

.ip-address {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 12px;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: 600;
}

#copy-ip {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#copy-ip:hover {
    background-color: var(--secondary-color);
    transform: scale(1.05);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.btn {
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

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

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: var(--shadow-light);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: var(--neon-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--primary-gradient);
    color: white;
    transform: translateY(-4px);
    box-shadow: var(--neon-glow);
    border-color: transparent;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: rgba(26, 26, 46, 0.7);
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary-color);
    font-family: 'Minecraft', sans-serif;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--border-hover);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.feature-card p {
    color: #b8b8b8;
}

/* Page Banner */
.page-banner {
    background: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(20px);
    padding: 80px 0;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.page-banner h1 {
    font-size: 3.2rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Minecraft', sans-serif;
    text-shadow: 0 0 30px rgba(155, 89, 182, 0.5);
    letter-spacing: 2px;
}

/* About Page Styles */
.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.about-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-family: 'Minecraft', sans-serif;
    margin-bottom: 20px;
}

.about-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--muted-text);
    max-width: 800px;
    margin: 0 auto;
}

.team-section {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: var(--card-bg);
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.team-section h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.team-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--muted-text);
}

/* WIP Section */
.wip-section {
    padding: 80px 0;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.wip-content {
    text-align: center;
    background-color: rgba(26, 26, 46, 0.8);
    padding: 50px;
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto;
    border: 2px solid var(--primary-color);
}

.wip-content i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.wip-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.wip-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.progress-bar {
    height: 20px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress {
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 10px;
}

.progress-text {
    font-weight: 600;
    color: var(--primary-color);
}

/* Footer */
footer {
    background-color: rgba(15, 15, 30, 0.9);
    padding: 50px 0 20px;
    margin-top: 50px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 15px;
}

.footer-logo p {
    color: #888;
    font-size: 0.9rem;
}

.footer-links h4, .footer-social h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(155, 89, 182, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.social-icons a i {
    font-size: 1.2rem;
}

/* Responsive Styles - 2025 */
@media (max-width: 992px) {
    .mobile-nav-toggle {
        display: flex;
    }
    
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(26, 26, 46, 0.98);
        backdrop-filter: blur(20px);
        padding: 20px;
        border-top: 1px solid var(--border-color);
        box-shadow: var(--shadow-heavy);
    }
    
    nav ul.show {
        display: flex;
    }
    
    nav ul li {
        margin: 10px 0;
    }
    
    nav ul li a {
        padding: 15px 20px;
        border-radius: 12px;
        background: rgba(155, 89, 182, 0.1);
        display: block;
        text-align: center;
        border: 1px solid var(--border-color);
        transition: all 0.3s ease;
    }
    
    nav ul li a:hover {
        background: rgba(155, 89, 182, 0.2);
        transform: translateY(-2px);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
        letter-spacing: 1px;
    }
    
    .hero p {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 20px;
    }
    
    .btn {
        width: 100%;
        text-align: center;
        padding: 16px 24px;
    }
    
    header .container {
        position: relative;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 25px;
    }
    
    .wip-content {
        padding: 25px;
        margin: 0 15px;
    }
    
    .status-box {
        margin: 0 20px;
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .features {
        padding: 60px 0;
    }
    
    .feature-card i {
        font-size: 2.5rem;
    }
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--success-color);
    color: white;
    padding: 15px 25px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.toast i {
    font-size: 1.2rem;
}

/* Minecraft-style elements */
.minecraft-btn {
    background-color: #727272;
    border: 2px solid #000;
    border-bottom-width: 4px;
    font-family: 'Minecraft', sans-serif;
    text-transform: uppercase;
    padding: 10px 20px;
    position: relative;
    display: inline-block;
    text-align: center;
    color: white;
    cursor: pointer;
    transition: all 0.1s ease;
}

.minecraft-btn:hover {
    background-color: #8b8b8b;
}

.minecraft-btn:active {
    border-bottom-width: 2px;
    transform: translateY(2px);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #1a1a2e;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Loading animation */
.loading {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.loading div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--primary-color);
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.loading div:nth-child(1) {
    left: 8px;
    animation: loading1 0.6s infinite;
}

.loading div:nth-child(2) {
    left: 8px;
    animation: loading2 0.6s infinite;
}

.loading div:nth-child(3) {
    left: 32px;
    animation: loading2 0.6s infinite;
}

.loading div:nth-child(4) {
    left: 56px;
    animation: loading3 0.6s infinite;
}

@keyframes loading1 {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes loading3 {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0);
    }
}

@keyframes loading2 {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(24px, 0);
    }
}

/* Terms of Service Styles */
.tos-section {
    padding: 60px 0;
}

.tos-content {
    background-color: rgba(26, 26, 46, 0.8);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--primary-color);
    max-width: 900px;
    margin: 0 auto;
}

.tos-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(155, 89, 182, 0.3);
}

.tos-header h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-family: 'Minecraft', sans-serif;
}

.last-updated {
    color: #888;
    font-style: italic;
    font-size: 0.9rem;
}

.tos-intro {
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.tos-article {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(155, 89, 182, 0.2);
}

.tos-article:last-of-type {
    border-bottom: none;
}

.tos-article h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.tos-article h3 i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.tos-article ul {
    padding-left: 20px;
}

.tos-article ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
    line-height: 1.6;
}

.tos-article ul li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.tos-footer {
    margin-top: 40px;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(155, 89, 182, 0.3);
}

.tos-footer p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.tos-acceptance {
    margin-top: 20px;
}

.tos-acceptance .btn {
    padding: 12px 40px;
    font-size: 1.1rem;
}

/* Modal Styles for TOS Agreement */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    overflow: auto;
}

.modal-content {
    background-color: #1a1a2e;
    margin: 5% auto;
    width: 80%;
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--primary-color);
    animation: modalFadeIn 0.3s ease;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

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

.modal-header {
    padding: 20px;
    border-bottom: 1px solid rgba(155, 89, 182, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    color: var(--primary-color);
    margin: 0;
    font-size: 1.8rem;
}

.close-modal {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s ease;
}

.close-modal:hover {
    color: var(--primary-color);
}

.modal-body {
    padding: 20px;
    overflow-y: auto;
    flex-grow: 1;
}

.tos-scroll {
    max-height: 50vh;
    overflow-y: auto;
    padding-right: 10px;
}

.tos-scroll::-webkit-scrollbar {
    width: 8px;
}

.tos-scroll::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.tos-scroll::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.modal-footer {
    padding: 20px;
    border-top: 1px solid rgba(155, 89, 182, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.agreement-checkbox {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.agreement-checkbox input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
}

.agreement-checkbox label {
    font-size: 1.1rem;
}

.modal-footer .btn {
    padding: 12px 30px;
    font-size: 1.1rem;
    width: 200px;
}

.modal-footer .btn:disabled {
    background-color: #555;
    cursor: not-allowed;
}

/* Modal TOS Content Styles */
.modal-body .tos-header {
    text-align: center;
    margin-bottom: 20px;
}

.modal-body .tos-header h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.modal-body .tos-article {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(155, 89, 182, 0.2);
}

.modal-body .tos-article h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.modal-body .tos-article h4 i {
    margin-right: 8px;
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .tos-content {
        padding: 25px;
    }
    
    .tos-header h2 {
        font-size: 1.8rem;
    }
    
    .tos-article h3 {
        font-size: 1.2rem;
    }
}
