/* ⚡️ Keyframe एनिमेशन */
@keyframes pulseGlow {
    0% { transform: scale(1); box-shadow: 0 0 5px rgba(255, 69, 0, 0.5); }
    50% { transform: scale(1.02); box-shadow: 0 0 15px rgba(255, 69, 0, 1); }
    100% { transform: scale(1); box-shadow: 0 0 5px rgba(255, 69, 0, 0.5); }
}

@keyframes scanline {
    0% { background-position: 0 0; }
    100% { background-position: 0 100%; }
}

/* बेसिक स्टाइल */
body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: #1a1a2e; /* गहरा नीला/बैंगनी */
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-container {
    width: 90%;
    max-width: 800px;
    padding: 30px;
    background: #0f0f1d;
    border: 3px solid #ff4500;
    box-shadow: 0 0 35px rgba(255, 69, 0, 0.5); /* गहरा ग्लो */
    border-radius: 10px;
    text-align: center;
}

/* 🏆 हेडर स्टाइलिंग (MAST DESIGN) */
header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #ff8c00;
    display: flex;
    justify-content: center;
}

.logo-placeholder {
    font-size: 2.5em; 
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    padding: 0 10px;
    letter-spacing: 2px;
    
    /* 💥 नियॉन ग्लो इफ़ेक्ट */
    text-shadow: 
        0 0 10px #ff8c00, 
        0 0 25px #ff4500, 
        0 0 40px #ff4500;
    
    /* स्कैनलाइन इफ़ेक्ट */
    background: linear-gradient(
        rgba(255, 255, 255, 0.08) 50%, 
        rgba(0, 0, 0, 0.08) 50%
    );
    background-size: 100% 4px;
    animation: scanline 5s linear infinite;
}

/* 3D कट इफ़ेक्ट */
.logo-placeholder::after {
    content: attr(data-text); 
    position: absolute;
    top: 3px;
    left: 15px;
    color: #05050b; /* बहुत गहरा बैकग्राउंड रंग */
    z-index: -1;
}

.logo-placeholder i {
    color: #ff4500; 
    margin-right: 10px;
}

/* मुख्य लिंक सेक्शन */
.main-links-section {
    display: flex;
    flex-direction: column;
    gap: 30px; 
}

.link-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* सभी बटनों के लिए कॉमन स्टाइल */
.action-button, .social-button, .contact-link {
    flex-grow: 1; 
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    text-transform: uppercase;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
    min-width: 180px;
    animation: pulseGlow 4s infinite ease-in-out; /* बटन पर हल्का ग्लो एनिमेशन */
}

/* आइकॉन स्टाइलिंग */
.action-button i, .social-button i, .contact-link i {
    margin-left: 10px;
    font-size: 1.2em;
}

/* 1. Get Access Token (Primary) */
.primary-button {
    background: #008cba;
    color: white;
    border: 2px solid #005f7c;
}
.primary-button:hover {
    background: #00a4d3;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 140, 186, 0.7);
}

/* 2. How to Get Access Token (Secondary) */
.secondary-button {
    background: #ff0000;
    color: white;
    border: 2px solid #cc0000;
}
.secondary-button:hover {
    background: #ff3333;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.7);
}

/* सोशल और कांटेक्ट बटन्स */
.social-button, .contact-link {
    background: #2b2b40;
    color: #ffc3a0; /* हल्का ऑरेंज */
    border: 1px solid #ff4500;
}

.social-button:hover, .contact-link:hover {
    background: #ff4500;
    color: #1a1a2e;
    transform: scale(1.05);
    box-shadow: 0 0 20px #ff4500;
}

/* मोबाइल रिस्पॉन्सिवनेस */
@media (max-width: 650px) {
    .link-group {
        flex-direction: column; 
    }
    .action-button, .social-button, .contact-link {
        width: 100%;
        min-width: unset;
    }
    .logo-placeholder {
        font-size: 1.8em;
    }
}
