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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #8B2635 0%, #2C3E50 50%, #D4AF37 100%);
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    overflow: hidden;
}

header {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #8B2635 0%, #A03020 50%, #D4AF37 100%);
    color: white;
}

.coin-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    margin-bottom: 20px;
}

header h1 {
    font-size: 3em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.symbol {
    font-size: 1.5em;
    font-weight: bold;
    opacity: 0.9;
}

main {
    padding: 40px;
}

section {
    margin-bottom: 40px;
}

h2 {
    color: #8B2635;
    margin-bottom: 20px;
    font-size: 2em;
    border-bottom: 3px solid #D4AF37;
    padding-bottom: 10px;
}

.hero {
    text-align: center;
    padding: 20px 0;
}

.hero h2 {
    border: none;
    color: #333;
    font-size: 2.2em;
    margin-bottom: 15px;
}

.tagline {
    font-size: 1.2em;
    color: #666;
    font-style: italic;
}

.about p {
    margin-bottom: 15px;
    font-size: 1.1em;
    text-align: justify;
}

.highlight {
    background: #FFFEF7;
    padding: 20px;
    border-left: 5px solid #D4AF37;
    margin-top: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(139, 38, 53, 0.1);
}

.info-grid {
    display: grid;
    gap: 15px;
}

.info-item {
    padding: 15px;
    background: #FAF9F6;
    border-radius: 8px;
    border-left: 4px solid #8B2635;
}

.info-item code {
    background: #e8e8e8;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.9em;
    word-break: break-all;
    display: block;
    margin-top: 5px;
}

.link-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1em;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

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

.btn-primary:hover {
    background: #A03020;
    box-shadow: 0 10px 20px rgba(139, 38, 53, 0.4);
}

.btn-secondary {
    background: #2C3E50;
    color: white;
}

.btn-secondary:hover {
    background: #1E3A5F;
    box-shadow: 0 10px 20px rgba(44, 62, 80, 0.4);
}

.btn-tertiary {
    background: #D4AF37;
    color: #2C3E50;
    font-weight: bold;
}

.btn-tertiary:hover {
    background: #C9A961;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.4);
}

.quote {
    background: linear-gradient(135deg, #FFFEF7 0%, #FAF9F6 100%);
    padding: 30px;
    border-radius: 10px;
    margin-top: 40px;
    border: 2px solid #D4AF37;
    box-shadow: 0 4px 12px rgba(139, 38, 53, 0.15);
}

blockquote {
    font-size: 1.3em;
    font-style: italic;
    color: #555;
    text-align: center;
    margin-bottom: 15px;
}

cite {
    display: block;
    text-align: right;
    font-size: 0.9em;
    color: #8B2635;
    margin-top: 10px;
    font-weight: 600;
}

footer {
    text-align: center;
    padding: 20px;
    background: #2C3E50;
    color: #D4AF37;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }
    
    main {
        padding: 20px;
    }
    
    .link-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
}

