/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* ===== VARIABLES ===== */
:root {
    --primary: #7289da;    /* Discord blurple */
    --primary-dark: #5c70c9;
    --secondary: #43b581;  /* Discord green */
    --secondary-dark: #389167;
    --accent: #ff73fa;     /* Music vibe pink */
    --text: #ffffff;
    --text-secondary: #b9bbbe;
    --background: #2c2f33;
    --background-secondary: #23272a;
    --background-light: #36393f;
    --shadow: rgba(0, 0, 0, 0.2);
}

/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== UTILITIES ===== */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
}

.btn.primary {
    background-color: var(--primary);
    color: var(--text);
}

.btn.primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px var(--shadow);
}

.btn.secondary {
    background-color: var(--secondary);
    color: var(--text);
}

.btn.secondary:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px var(--shadow);
}

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    color: var(--text);
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

/* ===== HEADER ===== */
header {
    background-color: var(--background-secondary);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px var(--shadow);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 28px;
    font-weight: 700;
}

.logo span {
    color: var(--primary);
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--primary);
}

nav ul li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

nav ul li a:hover:after,
nav ul li a.active:after {
    width: 100%;
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--background) 0%, var(--background-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(114, 137, 218, 0.1) 0%, rgba(114, 137, 218, 0) 70%);
    animation: pulse 15s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 0.5;
    }
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(to right, var(--text) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
}

.hero-image {
    flex: 1;
    max-width: 500px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: 100px 0;
    background-color: var(--background-light);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--background-secondary);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--shadow);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--primary);
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-secondary);
}

/* ===== CTA BANNER ===== */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner .btn.primary {
    background-color: white;
    color: var(--primary);
}

.cta-banner .btn.primary:hover {
    background-color: var(--background-light);
    color: white;
}

/* ===== COMMANDS SECTION ===== */
.commands {
    padding: 100px 0;
    background-color: var(--background);
}

.commands-table-container {
    overflow-x: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px var(--shadow);
}

.commands-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--background-secondary);
}

.commands-table th,
.commands-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.commands-table th {
    background-color: var(--primary);
    color: white;
    font-weight: 600;
}

.commands-table tr:last-child td {
    border-bottom: none;
}

.commands-table tr:hover td {
    background-color: rgba(114, 137, 218, 0.1);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 100px 0;
    background-color: var(--background-light);
}

.testimonial-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: none; /* Firefox */
}

.testimonial-slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge */
}

.testimonial {
    flex: 0 0 350px;
    background-color: var(--background-secondary);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px var(--shadow);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-secondary);
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.author-info h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ===== POLICY PAGE ===== */
.policy-section {
    padding: 80px 0;
    min-height: calc(100vh - 300px);
}

.page-title {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
}

.policy-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.pdf-container {
    background-color: var(--background-secondary);
    border-radius: 10px;
    padding: 20px;
    height: 600px;
    box-shadow: 0 10px 30px var(--shadow);
}

.pdf-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--text-secondary);
}

.pdf-placeholder i {
    font-size: 80px;
    margin-bottom: 20px;
    color: var(--primary);
}

.pdf-instruction {
    margin-top: 20px;
    font-size: 14px;
}

.pdf-placeholder code {
    display: block;
    background-color: var(--background);
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
    font-size: 12px;
    color: var(--accent);
    text-align: left;
}

.policy-summary {
    background-color: var(--background-secondary);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px var(--shadow);
}

.policy-summary h2 {
    margin-bottom: 20px;
    font-size: 24px;
}

.policy-summary > p {
    margin-bottom: 30px;
    color: var(--text-secondary);
}

.policy-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.policy-point {
    display: flex;
    align-items: flex-start;
}

.policy-point i {
    font-size: 20px;
    color: var(--primary);
    margin-right: 15px;
    margin-top: 3px;
}

.policy-point h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.policy-point p {
    color: var(--text-secondary);
    font-size: 14px;
}

.policy-contact {
    text-align: center;
    background-color: var(--background-secondary);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 30px var(--shadow);
}

.policy-contact h2 {
    margin-bottom: 15px;
}

.policy-contact p {
    margin-bottom: 20px;
    color: var(--text-secondary);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--background-secondary);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-logo span {
    color: var(--primary);
}

.footer-logo p {
    color: var(--text-secondary);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.link-group h3 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
}

.link-group h3:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.link-group ul li {
    margin-bottom: 10px;
}

.link-group ul li a {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.link-group ul li a:hover {
    color: var(--primary);
}

.social-links li a {
    display: flex;
    align-items: center;
}

.social-links li a i {
    margin-right: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 38px;
    }
    
    .policy-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        order: 2;
        margin-top: 40px;
    }
    
    .hero-image {
        order: 1;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    header .container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 20px;
    }
    
    nav ul {
        justify-content: center;
    }
    
    nav ul li {
        margin: 0 10px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
}