/* Container padding - exactly 1/4 inch (18px) */
.container {
    padding: 18px;
    max-width: calc(100% - 36px); /* Account for left/right padding */
}

/* Referral Page Specific Styles */ 
.referral-stats-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 1.5rem; 
    margin-bottom: 3rem; 
} 

.stat-card { 
    background: rgba(15, 23, 42, 0.8); 
    border: 1px solid rgba(59, 130, 246, 0.3); 
    border-radius: 16px; 
    padding: 1.5rem; 
    display: flex; 
    align-items: center; 
    gap: 1rem; 
    transition: all 0.3s ease; 
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.1); 
} 

.stat-card:hover { 
    transform: translateY(-4px); 
    border-color: rgba(59, 130, 246, 0.6); 
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.4); 
} 

.stat-icon { 
    font-size: 2.5rem; 
    min-width: 60px; 
} 

.stat-content h3 { 
    font-size: 2rem; 
    margin: 0; 
    background: linear-gradient(135deg, #8A3B12, #CD853F);
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
} 

.stat-content p { 
    margin: 0.5rem 0 0 0; 
    color: #94a3b8; 
    font-size: 0.9rem; 
} 

.referral-section { 
    margin-bottom: 3rem; 
} 

.referral-section h2 { 
    color: #8A3B12;
    margin-bottom: 1.5rem; 
    font-size: 1.5rem; 
} 

/* Update main title color */
.locker-box h1 {
    background: linear-gradient(135deg, #8A3B12, #D2691E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin-bottom: 1rem;
}

.referral-link-container { 
    background: rgba(15, 23, 42, 0.8); 
    border: 1px solid rgba(59, 130, 246, 0.3); 
    border-radius: 16px; 
    padding: 2rem; 
    transition: all 0.3s ease; 
} 

.referral-link-container:hover { 
    border-color: rgba(59, 130, 246, 0.6); 
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.3); 
} 

.link-display { 
    display: flex; 
    gap: 1rem; 
    margin-bottom: 1.5rem; 
} 

.link-display input { 
    flex: 1; 
    padding: 1rem; 
    border: 1px solid rgba(51, 65, 85, 0.5); 
    border-radius: 8px; 
    background: rgba(15, 23, 42, 0.8); 
    color: white; 
    font-family: 'Courier New', monospace; 
} 

/* Updated Copy button color */
.copy-btn { 
    background: #8A3B12;
    color: white; 
    border: none; 
    padding: 1rem 2rem; 
    border-radius: 8px; 
    cursor: pointer; 
    font-weight: 600; 
    transition: all 0.3s ease; 
    min-width: 100px; 
} 

.copy-btn:hover { 
    background: #6B2D0E;
    box-shadow: 0 0 15px rgba(138, 59, 18, 0.4);
} 

.social-share { 
    display: flex; 
    gap: 1rem; 
    flex-wrap: wrap; 
} 

.social-btn { 
    display: flex; 
    align-items: center; 
    gap: 0.5rem; 
    padding: 0.8rem 1.5rem; 
    border: none; 
    border-radius: 8px; 
    cursor: pointer; 
    font-weight: 600; 
    transition: all 0.3s ease; 
    color: white; 
} 

.social-btn.twitter { 
    background: linear-gradient(135deg, #1da1f2, #1a91da); 
} 

.social-btn.discord { 
    background: linear-gradient(135deg, #5865f2, #4752c4); 
} 

.social-btn.telegram { 
    background: linear-gradient(135deg, #0088cc, #006699); 
} 

.social-btn:hover { 
    filter: brightness(1.1); 
    transform: translateY(-2px); 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); 
} 

.tier-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 1.5rem; 
} 

.tier-card { 
    background: rgba(15, 23, 42, 0.8); 
    border: 2px solid rgba(138, 59, 18, 0.3);
    border-radius: 16px; 
    padding: 2rem; 
    transition: all 0.3s ease; 
    position: relative; 
    overflow: hidden; 
} 

.tier-card:hover { 
    transform: translateY(-4px);
    border-color: rgba(138, 59, 18, 0.6);
    box-shadow: 0 0 30px rgba(138, 59, 18, 0.3);
} 

.tier-card.bronze { 
    border-color: rgba(205, 127, 50, 0.5); 
} 

.tier-card.bronze:hover { 
    border-color: rgba(205, 127, 50, 0.8); 
    box-shadow: 0 0 30px rgba(205, 127, 50, 0.4); 
} 

.tier-card.silver { 
    border-color: rgba(192, 192, 192, 0.5); 
} 

.tier-card.silver:hover { 
    border-color: rgba(192, 192, 192, 0.8); 
    box-shadow: 0 0 30px rgba(192, 192, 192, 0.4); 
} 

.tier-card.gold { 
    border-color: rgba(255, 215, 0, 0.5); 
} 

.tier-card.gold:hover { 
    border-color: rgba(255, 215, 0, 0.8); 
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4); 
} 

.tier-header { 
    display: flex; 
    align-items: center; 
    gap: 1rem; 
    margin-bottom: 1rem; 
} 

.tier-icon { 
    font-size: 2rem; 
} 

.tier-header h3 { 
    margin: 0; 
    font-size: 1.5rem; 
} 

.tier-details ul { 
    list-style: none; 
    padding: 0; 
} 

.tier-details li { 
    padding: 0.5rem 0; 
    color: #94a3b8; 
    position: relative; 
    padding-left: 1.5rem; 
} 

.tier-details li::before { 
    content: "✓"; 
    position: absolute; 
    left: 0; 
    color: #10b981; 
    font-weight: bold; 
} 

.activity-list { 
    background: rgba(15, 23, 42, 0.8); 
    border: 1px solid rgba(59, 130, 246, 0.3); 
    border-radius: 16px; 
    padding: 1.5rem; 
    max-height: 400px; 
    overflow-y: auto; 
} 

.activity-item { 
    display: flex; 
    align-items: center; 
    gap: 1rem; 
    padding: 1rem; 
    border-bottom: 1px solid rgba(51, 65, 85, 0.3); 
    transition: all 0.3s ease; 
} 

.activity-item:last-child { 
    border-bottom: none; 
} 

.activity-item:hover { 
    background: rgba(59, 130, 246, 0.1); 
    border-radius: 8px; 
} 

.activity-icon { 
    font-size: 1.5rem; 
    min-width: 40px; 
    text-align: center; 
} 

.activity-content { 
    flex: 1; 
} 

.activity-content p { 
    margin: 0; 
} 

.activity-time { 
    color: #94a3b8; 
    font-size: 0.8rem; 
} 

.activity-reward { 
    color: #10b981; 
    font-weight: bold; 
    font-size: 1.1rem; 
} 

/* Responsive Design */ 
@media (max-width: 768px) { 
    .referral-stats-grid { 
        grid-template-columns: 1fr; 
    } 
     
    .link-display { 
        flex-direction: column; 
    } 
     
    .social-share { 
        justify-content: center; 
    } 
     
    .tier-grid { 
        grid-template-columns: 1fr; 
    } 
} 

.subtitle {
    text-align: center;
    color: #94a3b8;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}