@font-face {
    font-family: 'Futura Condensed Light';
    src: url('font/Futura-CondensedLight.otf') format('opentype');
}

@font-face {
    font-family: 'MagicCardsNormal';
    src: url('font/MagicCardsNormal.ttf') format('truetype');
}

@font-face {
    font-family: 'MagicCards';
    src: url('font/MagicCardsNormal.ttf') format('truetype');
}

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #2c3e50;
    --accent-color: rgb(212, 94, 0);
    --text-color: #e0e0e0;
    --light-bg: #2a2a2a;
    --dark-bg: #1a1a1a;
}

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

body {
    font-family: 'Futura Condensed Light', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    min-height: 100vh;
    font-size: 1.6rem;
    letter-spacing: 0.02em;
}

.container {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    margin: 40px auto;
    padding: 40px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    max-width: 1200px;
}

/* Common Components */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.tech-card {
    background: rgba(42, 42, 42, 0.8);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    color: var(--text-color);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(212, 94, 0, 0.1);
    transition: transform 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-5px);
}

.tech-card h3 {
    color: var(--accent-color);
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.tech-card ul {
    list-style: none;
    padding-left: 20px;
}

.tech-card li {
    margin-bottom: 10px;
    position: relative;
    font-size: 1.6rem;
    letter-spacing: 0.02em;
}

.tech-card li:before {
    content: "•";
    color: var(--accent-color);
    position: absolute;
    left: -15px;
}

.feature-detail {
    margin: 40px 0;
    padding: 30px;
    background: rgba(42, 42, 42, 0.8);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(212, 94, 0, 0.1);
}

.feature-detail h2 {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 2.2rem;
}

.feature-detail p {
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 1.6rem;
    letter-spacing: 0.02em;
}

.back-button {
    display: inline-block;
    margin: 20px 0;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.back-button:hover {
    text-decoration: underline;
    transform: translateX(-5px);
}

/* Buttons */
.hero-buttons {
    margin-top: 40px;
    text-align: center;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 6px 12px;
    background-color: rgb(94, 5, 5);
    background-image: linear-gradient(rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 100%);
    color: rgb(255, 255, 255);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-decoration: none;
    border: 1px solid rgba(138, 155, 182, 0.3);
    border-radius: 8px;
    cursor: pointer;
    backdrop-filter: blur(5px);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 6px, rgba(255, 255, 255, 0.1) 0px 1px inset;
    transition: all 0.2s ease-in-out;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: rgba(0, 0, 0, 0.3) 0px 4px 8px, rgba(255, 255, 255, 0.1) 0px 1px inset;
}

.cta-button.is-chim {
    background-color: rgb(242, 124, 17);
    border-color: rgba(242, 124, 17, 0.95);
    color: #ffffff;
}

.cta-button.is-chim:hover {
    background-color: rgb(221, 106, 6);
    border-color: rgba(221, 106, 6, 0.95);
}

.cta-button.is-stobe {
    background-color: #e6b76c;
    border-color: #e6b76c;
    color: #ffffff;
}

.cta-button.is-stobe:hover {
    background-color: #d2a45a;
    border-color: #d2a45a;
}

.cta-button.is-crimson {
    background-color: #5e0505;
    border-color: #842121;
    color: #ffffff;
}

.cta-button.is-crimson:hover {
    background-color: #710909;
    border-color: #9f2e2e;
}

.cta-button .button-content {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    line-height: 1;
}

.cta-button .button-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px;
    object-fit: contain;
    display: block;
    border-radius: 4px;
}

.cta-button .button-logo {
    width: 80px;
    height: auto;
    object-fit: contain;
    display: block;
}

.cta-button .button-text {
    line-height: 1;
    letter-spacing: 0.4px;
}

.cta-button.secondary {
    background-color: transparent;
    border: 1px solid rgba(138, 155, 182, 0.3);
    background-image: linear-gradient(rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 100%);
}

.cta-button.secondary:hover {
    background-color: rgba(94, 5, 5, 0.2);
}

/* Top Download Button */
.top-download-button {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 20px auto;
    padding: 15px 30px;
    background: var(--accent-color);
    color: white;
    text-align: center;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(212, 94, 0, 0.3);
}

.top-download-button:hover {
    background: rgba(212, 94, 0, 1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 94, 0, 0.4);
}

/* Typography */
h1 {
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(212, 94, 0, 0.3);
    margin-bottom: 20px;
}

.intro-text {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.6rem;
    line-height: 1.6;
    letter-spacing: 0.02em;
}

/* Deprecated Banner */
.deprecated-banner {
    background: rgba(212, 94, 0, 0.2);
    border: 1px solid rgba(212, 94, 0, 0.5);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 30px;
    text-align: center;
}

.deprecated-banner i {
    margin-right: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
    }
    
    .command-list {
        columns: 1;
    }
}

/* Command List */
.command-list {
    columns: 2;
    column-gap: 40px;
    margin: 20px 0;
}

/* Header & Navigation */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/img/background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-content {
    padding: 20px;
}

.hero-logo {
    width: 200px;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    max-width: 600px;
}

/* Footer */
footer {
    background-color: var(--dark-bg);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section:last-child {
    align-items: flex-end;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s;
}

.social-links a:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Compact footer variant for homepage */
.footer-compact {
    padding: 10px 0;
    background-color: rgba(26, 26, 26, 0.95);
}

.footer-compact .footer-compact-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 12px;
    white-space: nowrap;
}

.footer-compact .footer-compact-links {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-compact .footer-compact-links a {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-compact .footer-compact-links a:hover {
    color: var(--accent-color);
    transform: translateY(-1px);
}

.footer-compact .footer-compact-copy {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1;
    color: rgba(224, 224, 224, 0.9);
    white-space: nowrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }

    .footer-compact .footer-compact-copy {
        font-size: 0.82rem;
    }
}

/* Adjust other text elements to maintain proportions */
.tech-card p, 
.feature-detail p,
.intro-text p {
    font-size: 1.5rem;
    line-height: 1.5;
}

.read-more {
    font-size: 1.4rem !important;
}

.feature-list li {
    margin-bottom: 12px;
    letter-spacing: 0.02em;
    line-height: 1.6;
} 
