/* Trade Gothic Font Face Declarations */
@font-face {
    font-family: 'Trade Gothic';
    src: url('/fonts/TradeGothicLTStd.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Trade Gothic';
    src: url('/fonts/TradeGothicLTStd-Obl.otf') format('opentype');
    font-weight: 400;
    font-style: oblique;
    font-display: swap;
}

@font-face {
    font-family: 'Trade Gothic';
    src: url('/fonts/TradeGothicLTStd-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Trade Gothic';
    src: url('/fonts/TradeGothicLTStd-BoldObl.otf') format('opentype');
    font-weight: 700;
    font-style: oblique;
    font-display: swap;
}

@font-face {
    font-family: 'Trade Gothic';
    src: url('/fonts/TradeGothicLTStd-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Trade Gothic';
    src: url('/fonts/TradeGothicLTStd-LightObl.otf') format('opentype');
    font-weight: 300;
    font-style: oblique;
    font-display: swap;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: url('/images/background-tile.png') repeat, linear-gradient(to bottom,#000000,#0c0c0c 95%);
    min-height: 100vh;
}

/*body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #FBAC19 0%, #F39C12 100%);
    min-height: 100vh;
}*/

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header {
    text-align: center;
    margin-bottom: 30px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.logo {
    max-height: 60px;
    margin-bottom: 10px;
}

.header h1 {
    color: #333;
    font-size: 2rem;
    font-weight: 300;
    font-family: 'Trade Gothic', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    text-transform: uppercase;
}

.main-content {
    flex: 1;
}

.alert-box {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.alert-box i {
    font-size: 3rem;
    color: #f39c12;
    margin-bottom: 15px;
}

.alert-box h2 {
    color: #856404;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-family: 'Trade Gothic', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

.alert-box p {
    color: #856404;
    font-size: 1.1rem;
}

.action-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

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

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #FBAC19;
}

.card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
    font-family: 'Trade Gothic', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

.card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn i {
    margin-right: 8px;
}

.btn-primary {
    background: #FBAC19;
    color: white;
}

.btn-primary:hover {
    background: #E6A017;
    transform: translateY(-1px);
}

.btn-secondary {
    background: #48bb78;
    color: white;
}

.btn-secondary:hover {
    background: #38a169;
    transform: translateY(-1px);
}

.info-section {
    background: white;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.info-section h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-family: 'Trade Gothic', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

.info-section p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.info-section ul {
    color: #666;
    margin-left: 20px;
    margin-bottom: 15px;
}

.info-section li {
    margin-bottom: 8px;
}

.footer {
    background: rgba(255, 255, 255, 0.1);
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    color: white;
    margin-top: 20px;
}

.footer p {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    .header h1 {
        font-size: 1.5rem;
    }

    .action-cards {
        grid-template-columns: 1fr;
    }

    .card {
        padding: 20px;
    }

    .alert-box {
        padding: 20px;
    }

    .alert-box h2 {
        font-size: 1.3rem;
    }

    .alert-box p {
        font-size: 1rem;
    }
}