/* Prince Live - CSS Styles */

/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Saira', sans-serif;
    line-height: 1.6;
    color: #9932cc;
    background: #000000;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Beta Signup Section */
.beta-signup {
    padding: 3rem 0;
    text-align: center;
    color: #9932cc;
    background: #000000;
}

.logo-container {
    margin-bottom: 2rem;
    text-align: center;
}

.logo-image {
    max-width: 300px;
    max-height: 225px;
    width: auto;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(153, 50, 204, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: pulse-beat 2s ease-in-out infinite;
}

.logo-image:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(153, 50, 204, 0.6);
    animation-play-state: paused;
}

/* Pulsing heartbeat animation */
@keyframes pulse-beat {
    0%, 100% {
        transform: scale(1.0);
    }
    50% {
        transform: scale(1.06);
    }
}

/* Live Status Pulse Animation */
@keyframes pulse {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Privacy Policy Modal */
.privacy-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.privacy-modal-content {
    background: linear-gradient(180deg, #1a1a1a 0%, #000000 100%);
    border: 2px solid #b06cff;
    border-radius: 20px;
    padding: 30px;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    color: white;
    font-family: 'Saira', sans-serif;
    box-shadow: 0 0 50px rgba(176, 108, 255, 0.3);
}

.privacy-modal h2 {
    color: #b06cff;
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

.privacy-modal h3 {
    color: #d1c4e9;
    font-size: 1.3rem;
    margin: 20px 0 10px 0;
    font-weight: 600;
}

.privacy-modal h4 {
    color: #b06cff;
    font-size: 1.1rem;
    margin: 15px 0 8px 0;
    font-weight: 600;
}

.privacy-content {
    margin-bottom: 30px;
}

.privacy-section {
    background: rgba(176, 108, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid rgba(176, 108, 255, 0.3);
}

.privacy-details {
    font-size: 0.95rem;
    line-height: 1.6;
}

.privacy-modal p {
    margin: 10px 0;
    line-height: 1.6;
    color: #e0e0e0;
}

.privacy-agreement {
    border-top: 1px solid rgba(176, 108, 255, 0.3);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 500;
    color: #d1c4e9;
    gap: 12px;
}

.checkbox-container input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #b06cff;
    cursor: pointer;
}

.privacy-button {
    background: linear-gradient(45deg, #b06cff, #9c50d6);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Saira', sans-serif;
}

.privacy-button:enabled:hover {
    background: linear-gradient(45deg, #9c50d6, #8a42c4);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(176, 108, 255, 0.4);
}

.privacy-button:disabled {
    background: #666;
    cursor: not-allowed;
    opacity: 0.5;
}

/* Shake animation for modal */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .privacy-modal-content {
        margin: 10px;
        padding: 20px;
        max-height: 95vh;
    }
    
    .privacy-modal h2 {
        font-size: 1.5rem;
    }
    
    .privacy-modal h3 {
        font-size: 1.2rem;
    }
    
    .privacy-modal h4 {
        font-size: 1rem;
    }
    
    .privacy-modal p {
        font-size: 0.9rem;
    }
}

.beta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #9932cc;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.1);
}

.beta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.signup-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.form-group input {
    flex: 1;
    min-width: 300px;
    padding: 15px 20px;
    border: 2px solid #9932cc;
    border-radius: 25px;
    background: #000000;
    color: #9932cc;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input:focus {
    background: #000000;
    border-color: #663399;
    box-shadow: 0 0 20px rgba(153, 50, 204, 0.3);
}

.form-group input::placeholder {
    color: rgba(153, 50, 204, 0.7);
}

/* Artist Profile Section */
.artist-profile {
    padding: 4rem 0 2rem 0;
    color: #9932cc;
}

.profile-header {
    text-align: center;
    margin-bottom: 3rem;
}

.artist-name {
    font-size: 4rem;
    color: #9932cc;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
}

.artist-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* Social Links */
.social-links {
    margin-top: 1.5rem;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #9932cc;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.8rem 1.5rem;
    border: 2px solid #9932cc;
    border-radius: 25px;
    transition: all 0.3s ease;
    background: rgba(153, 50, 204, 0.1);
}

.instagram-link:hover {
    background: #9932cc;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(153, 50, 204, 0.4);
}

.instagram-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Live Stream Container */
.stream-container {
    margin: 3rem 0;
    background: #000000;
    border: 2px solid #9932cc;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(153, 50, 204, 0.2);
}

/* Hide YouTube audio controls */
iframe[title="PubCam 24/7 Live Stream"] {
    pointer-events: auto;
}

/* Legal compliance overlay */
.mute-overlay {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(153, 50, 204, 0.9);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
    z-index: 1000;
    pointer-events: none;
}

.video-player {
    aspect-ratio: 16/9;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 400px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #9932cc;
    color: #000000;
    border: 2px solid #9932cc;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: #663399;
    border-color: #663399;
    box-shadow: 0 5px 15px rgba(153, 50, 204, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #9932cc;
    border: 2px solid #9932cc;
}

.btn-secondary:hover {
    background: #9932cc;
    color: #000000;
}

/* Video Controls */
.video-controls {
    text-align: center;
    color: #9932cc;
    z-index: 10;
}

.stream-info {
    margin-top: 1rem;
}

.stream-info span {
    color: #663399;
    font-weight: bold;
}

/* Venue Information Section */
.venue-info {
    margin-top: 4rem;
    background: #000000;
    padding: 3rem;
}

.venue-info h3 {
    text-align: center;
    font-size: 2.5rem;
    color: #9932cc;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.1);
}

.info-bubbles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    justify-items: center;
}

.info-bubble {
    background: #000000;
    padding: 2rem;
    border-radius: 50px;
    border: 3px solid #9932cc;
    text-align: center;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
    position: relative;
    overflow: hidden;
}

.info-bubble:hover {
    transform: translateY(-5px);
    border-color: #663399;
    box-shadow: 0 10px 25px rgba(153, 50, 204, 0.3);
}

.bubble-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.info-bubble h4 {
    color: #9932cc;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-bubble p {
    color: #9932cc;
    margin: 0.5rem 0;
    font-size: 0.95rem;
    opacity: 0.9;
}

.info-bubble p:first-of-type {
    font-weight: bold;
    opacity: 1;
}

.video-controls {
    text-align: center;
    color: white;
}

.play-btn {
    background: #9932cc;
    color: #000000;
    border: 2px solid #9932cc;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.play-btn:hover {
    transform: scale(1.05);
    background: #663399;
    border-color: #663399;
    box-shadow: 0 5px 15px rgba(153, 50, 204, 0.4);
}

.stream-info {
    margin-top: 1rem;
}

.stream-info span {
    color: #ffd700;
    font-weight: bold;
}





/* Footer */
.footer {
    background: #000000;
    color: #9932cc;
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
    border-top: 1px solid #9932cc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-image {
        max-width: 220px;
        max-height: 165px;
    }
    
    .beta-title {
        font-size: 2rem;
    }
    
    .artist-name {
        font-size: 3rem;
    }
    
    .form-group {
        flex-direction: column;
        align-items: center;
    }
    
    .form-group input {
        min-width: 280px;
        margin-bottom: 1rem;
    }
    
    .info-bubbles {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .info-bubbles {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .info-bubble {
        max-width: 100%;
    }
    
    .venue-info {
        padding: 2rem;
    }
    
    .video-player {
        min-height: 250px;
    }
    
    .bubble-icon {
        font-size: 2.5rem;
    }
}

/* Animation Classes */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Live indicator */
.live-indicator {
    display: inline-block;
    background: #ff4444;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}
