.info-page {
    padding-top: 120px;
    padding-bottom: 60px;
    background-color: #0d0b09;
    min-height: 100vh;
}
.info-container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(26, 21, 16, 0.8);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(226, 202, 170, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.info-header {
    text-align: center;
    margin-bottom: 3rem;
}
.info-title {
    font-size: 2.5rem;
    color: #E2CAAA;
    margin-bottom: 1rem;
}
.info-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #d1d1d1;
    margin-bottom: 1.5rem;
}
.info-content ul {
    list-style: none;
    margin: 1.5rem 0 2rem 1.5rem;
    padding: 0;
    color: #d1d1d1;
    font-size: 1.1rem;
    line-height: 1.8;
}
.info-content li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}
.info-content li::before {
    content: '•';
    color: #E2CAAA;
    position: absolute;
    left: 0;
    font-weight: bold;
}
.info-content strong {
    color: #f0f0f0;
    font-weight: 600;
}
.back-btn-container {
    text-align: center;
    margin-top: 3rem;
}


/* Social Media Section */
.social-section {
    padding: 6rem 4% 8rem;
    background: linear-gradient(to bottom, #0b0907, #0d0b09);
    display: flex;
    justify-content: center;
    border-top: 1px solid rgba(226, 202, 170, 0.05);
}

.social-links {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-card {
    width: 90px;
    height: 90px;
    background: rgba(26, 21, 16, 0.6);
    border: 1px solid rgba(226, 202, 170, 0.1);
    border-radius: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.2rem;
    color: #f0f0f0;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.social-card i {
    z-index: 2;
    transition: transform 0.3s ease;
}

.social-card.tmp:hover {
    background: rgba(226, 202, 170, 0.15);
    border-color: rgba(226, 202, 170, 0.5);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(226, 202, 170, 0.2);
    color: #E2CAAA;
}

.social-card.youtube:hover {
    background: rgba(255, 0, 0, 0.15);
    border-color: rgba(255, 0, 0, 0.4);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 0, 0, 0.2);
    color: #ff0000;
}

.social-card.discord:hover {
    background: rgba(88, 101, 242, 0.15);
    border-color: rgba(88, 101, 242, 0.4);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(88, 101, 242, 0.2);
    color: #5865F2;
}

.social-card:hover i {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .social-section {
        padding: 4rem 4%;
    }
    .social-card {
        width: 75px;
        height: 75px;
        font-size: 1.8rem;
    }
    .social-links {
        gap: 25px;
    }
}