* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: url('../images/hero-bg.png') center/cover fixed;
    background-color: #0a0a0a;
    color: #fff;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: rgba(10, 10, 10, 0.7);
}

/* Top Search Bar */
.top-bar {
    padding: 1rem;
    background: rgba(15, 15, 15, 0.9);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.search-container {
    position: relative;
    display: flex;
    align-items: center;
}

.search-container i {
    position: absolute;
    left: 1rem;
    color: #d4af37;
    font-size: 1rem;
}

.search-input {
    width: 100%;
    padding: 0.8rem 1rem 0.8rem 2.5rem;
    border: none;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.95rem;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

/* Icon Navigation */
.icon-nav {
    display: flex;
    justify-content: space-between;
    padding: 1rem 1.5rem 0.4rem;
    align-items: center;
    gap: 1.5rem;
}

.icon-group {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.icon-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    border: none;
    color: #0a0a0a;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-btn:hover {
    background: #d4af37;
    transform: scale(1.1);
}

/* Main Content */
.main-content {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
}

/* Hero Section */
.hero {
    text-align: center;
    margin-bottom: 1.5rem;
}

.profile-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-pic {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 8px solid #d4af37;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.profile-pic:hover {
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
    transform: scale(1.02);
}

.name-badge h1 {
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.checkmark {
    color: #d4af37;
    font-size: 1.3rem;
    margin-left: 0.5rem;
}

.subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 100%;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Action Buttons */
.action-buttons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin: 0 auto 1.75rem;
    width: 100%;
    max-width: 420px;
    padding: 0;
}

.action-btn {
    padding: 1rem 1.1rem;
    border: 1px solid #b88d14;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0;
    background: linear-gradient(135deg, #f8e694 0%, #d9b43d 100%);
    color: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    min-height: 80px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
}

.action-btn:hover {
    background: linear-gradient(135deg, #fdeca4 0%, #e3bf4b 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(212, 175, 55, 0.28);
}

.action-buttons .action-btn:last-child {
    grid-column: 1 / -1;
    width: min(56%, 230px);
    justify-self: center;
}

/* Info Cards */
.info-cards {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
    margin-top: 2rem;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    border-left: 3px solid #d4af37;
}

.info-card i {
    color: #d4af37;
    font-size: 1.2rem;
}

.info-card p {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Sections */
.contact-section,
.socials-section,
.communities-section,
.payment-section,
.cta-section {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    margin-bottom: 1.5rem;
}

.contact-section h2,
.socials-section h2,
.communities-section h2,
.payment-section h2 {
    display: none;
}

/* Buttons Grid */
.contact-buttons,
.socials-grid,
.links-grid,
.payment-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}

.contact-btn,
.social-link,
.link-btn,
.payment-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.1rem;
    border-radius: 10px;
    border: 1px solid #b88d14;
    text-decoration: none;
    color: #0a0a0a;
    font-weight: 700;
    transition: all 0.3s ease;
    gap: 0.75rem;
    background: linear-gradient(135deg, #f8e694 0%, #d9b43d 100%);
    font-size: 1rem;
    flex-wrap: nowrap;
    text-align: center;
    width: 100%;
    min-height: 56px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
}

.contact-btn:hover,
.social-link:hover,
.link-btn:hover,
.payment-btn:hover {
    background: linear-gradient(135deg, #fdeca4 0%, #e3bf4b 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(212, 175, 55, 0.28);
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 2rem 0;
    background: transparent;
    border: none;
}

.cta-btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: #d4af37;
    color: #0a0a0a;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-btn:hover {
    background: #e8c547;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.qr-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.qr-modal[hidden] {
    display: none;
}

.qr-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
}

.qr-modal-content {
    position: relative;
    width: min(100%, 320px);
    padding: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.45);
    border-radius: 18px;
    background: rgba(18, 18, 18, 0.96);
    text-align: center;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
}

.qr-modal-content h2 {
    color: #d4af37;
    margin-bottom: 1rem;
    font-size: 1.35rem;
}

.qr-modal-content img {
    width: 220px;
    max-width: 100%;
    display: block;
    margin: 0 auto 1rem;
    padding: 0.75rem;
    border-radius: 16px;
    background: #fff;
}

.qr-modal-content p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
}

.qr-close-btn {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    cursor: pointer;
}

/* Footer */
.footer {
    text-align: center;
    padding: 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
    background: #d4af37;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #e8c547;
}

/* Responsive Design */
@media (max-width: 480px) {
    .icon-nav {
        gap: 1rem;
        padding: 0.8rem 1rem 0.3rem;
    }

    .icon-group {
        gap: 0.7rem;
    }

    .icon-btn {
        width: 46px;
        height: 46px;
        font-size: 0.9rem;
    }

    .profile-pic {
        width: 150px;
        height: 150px;
        border-width: 6px;
    }

    .name-badge h1 {
        font-size: 1.5rem;
    }

    .action-buttons {
        max-width: 100%;
        gap: 0.85rem;
    }

    .action-btn {
        min-height: 35px;
        padding: 0.9rem 0.75rem;
        font-size: 0.95rem;
    }

    .action-buttons .action-btn:last-child {
        width: min(62%, 210px);
    }

    .contact-buttons,
    .socials-grid,
    .links-grid,
    .payment-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .contact-btn,
    .social-link,
    .link-btn,
    .payment-btn {
        min-height: 52px;
        padding: 0.85rem 0.75rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 600px) {
    .main-content {
        padding: 1.5rem 1rem;
    }

    .contact-section,
    .socials-section,
    .communities-section,
    .payment-section,
    .cta-section {
        padding: 1.2rem;
    }
}
