/* =====================================
   CORE STYLES - Extracted from your current website
   ===================================== */
/* Define your custom font - ADD THIS SECTION AT THE VERY TOP */
@font-face {
    font-family: 'DieBuddyCustom'; /* You can change this name */
    src: url('../fonts/AcademyFilled3D.woff2') format('woff2'),
         url('../fonts/AcademyFilled3D.woff') format('woff'),
         url('../fonts/AcademyFilled3D.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #0f4c75 0%, #3282b8 50%, #bbe1fa 100%);
    min-height: 100vh;
}

/* Page containers */
.page {
    display: none;
    min-height: 100vh;
    padding: 120px 2rem 60px;
}

.page.active {
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Hero sections */
.hero {
    text-align: center;
    margin-bottom: 4rem;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: normal;
    color: #b22222;
    margin-bottom: 1rem;
    font-family: 'DieBuddyCustom', 'Orbitron', sans-serif;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

h1 {
    font-family: 'DieBuddyCustom', 'Orbitron', sans-serif;
    letter-spacing: 1px;
}

h2 {
    color: #b22222;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    text-align: center;
    font-family: 'Segoe UI', sans-serif !important;
}

.hero p {
    font-size: 1.3rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Typography */
h3 {
    color: #b22222;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

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

/* Links */
a {
    color: #b22222;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #dc143c;
    text-decoration: underline;
}

/* Lists */
ul, ol {
    margin-bottom: 1rem;
    color: #666;
}

li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Sections */
section {
    margin: 3rem 0;
}

/* App preview section */
.app-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin: 4rem 0;
}

/* Footer */
.footer {
    background: rgba(51, 51, 51, 0.95);
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
}

.footer p {
    margin-bottom: 1rem;
}

.footer a {
    color: #b22222;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
    
    .logo {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
        letter-spacing: 0.5px;
    }
    
    .logo {
        font-size: 1.3rem;
    }
}
