/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
    transition: transform 0.3s ease;
    transform: translateY(-100%);
}

.navbar-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.navbar-brand:hover {
    opacity: 0.7;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    color: #000;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    padding-top: 60px;
    display: flex;
    flex-direction: column;
}



/* Circular Apps Layout */
.apps-circle {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1rem 0;
    flex: 1;
    min-height: 80vh;
}

.circle-container {
    position: relative;
    width: 600px;
    height: 600px;
    margin: 0 auto;
}

/* Central Circle */
.central-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border: 2px solid #000;
    cursor: pointer;
}

.central-text {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    letter-spacing: 0.05em;
}



/* App Circles */
.app-circle {
    position: absolute;
    width: 120px;
    height: 120px;
    top: 50%;
    left: 50%;
    transform-origin: center;
}

.app-circle[data-angle="0"] {
    transform: translate(-50%, -50%) rotate(0deg) translateY(-230px) rotate(0deg);
}

.app-circle[data-angle="51.4"] {
    transform: translate(-50%, -50%) rotate(51.4deg) translateY(-230px) rotate(-51.4deg);
}

.app-circle[data-angle="102.8"] {
    transform: translate(-50%, -50%) rotate(102.8deg) translateY(-230px) rotate(-102.8deg);
}

.app-circle[data-angle="154.2"] {
    transform: translate(-50%, -50%) rotate(154.2deg) translateY(-230px) rotate(-154.2deg);
}

.app-circle[data-angle="205.6"] {
    transform: translate(-50%, -50%) rotate(205.6deg) translateY(-230px) rotate(-205.6deg);
}

.app-circle[data-angle="257"] {
    transform: translate(-50%, -50%) rotate(257deg) translateY(-230px) rotate(-257deg);
}

.app-circle[data-angle="308.4"] {
    transform: translate(-50%, -50%) rotate(308.4deg) translateY(-230px) rotate(-308.4deg);
}

/* App Progress Container */
.app-progress {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: white;
    overflow: hidden;
    transition: all 0.3s ease;
}

.app-progress:hover {
    cursor: pointer;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Progress Fill - fills from bottom to top */
.progress-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    transition: height 0.8s ease;
    border-radius: 0 0 50% 50%;
}

/* App Status - Default is disabled (gray) */
.app-circle .progress-fill {
    background: #e7e6e6; /* Gray - Disabled */
    height: 100% !important;
}

/* Live Apps - Active with their chakra colors */
.app-circle[data-status="live"] .progress-fill {
    background: #F44336; /* Red - Live indicator */
}

.app-circle[data-app="money"][data-status="live"] .progress-fill {
    background: #F44336; /* Rojo - Chakra Raíz */
}

.app-circle[data-app="crea"][data-status="live"] .progress-fill {
    background: #FF9800; /* Naranja - Chakra Sacro */
}

.app-circle[data-app="control"][data-status="live"] .progress-fill {
    background: #FFEB3B; /* Amarillo - Chakra Ombligo */
}

.app-circle[data-app="genius"][data-status="live"] .progress-fill {
    background: #4CAF50; /* Verde - Chakra Corazón */
}

.app-circle[data-app="express"][data-status="live"] .progress-fill {
    background: #03A9F4; /* Azul - Chakra Garganta */
}

.app-circle[data-app="totem"][data-status="live"] .progress-fill {
    background: #3F51B5; /* Índigo - Chakra Tercer Ojo */
}

.app-circle[data-app="dreams"][data-status="live"] .progress-fill {
    background: #991fff; /* Violeta - Chakra Corona */
}



/* App Icon */
.app-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    object-fit: contain;
    z-index: 5;
}

/* App Label */
.app-label {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9rem;
    font-weight: 500;
    color: #000;
    white-space: nowrap;
}

/* Footer */
.footer {
    padding: 1rem 0;
    text-align: center;
    margin-top: auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-links a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
        padding-top: 50px;
    }
    
    .apps-circle {
        margin: 0.5rem 0;
        min-height: 70vh;
    }
    
    .circle-container {
        width: 500px;
        height: 500px;
    }
    
    .central-circle {
        width: 100px;
        height: 100px;
    }
    
    .central-text {
        font-size: 1.8rem;
    }
    
    .app-circle {
        width: 80px;
        height: 80px;
    }
    
    .app-circle[data-angle="0"] {
        transform: translate(-50%, -50%) rotate(0deg) translateY(-150px) rotate(0deg);
    }
    
    .app-circle[data-angle="51.4"] {
        transform: translate(-50%, -50%) rotate(51.4deg) translateY(-150px) rotate(-51.4deg);
    }
    
    .app-circle[data-angle="102.8"] {
        transform: translate(-50%, -50%) rotate(102.8deg) translateY(-150px) rotate(-102.8deg);
    }
    
    .app-circle[data-angle="154.2"] {
        transform: translate(-50%, -50%) rotate(154.2deg) translateY(-150px) rotate(-154.2deg);
    }
    
    .app-circle[data-angle="205.6"] {
        transform: translate(-50%, -50%) rotate(205.6deg) translateY(-150px) rotate(-205.6deg);
    }
    
    .app-circle[data-angle="257"] {
        transform: translate(-50%, -50%) rotate(257deg) translateY(-150px) rotate(-257deg);
    }
    
    .app-circle[data-angle="308.4"] {
        transform: translate(-50%, -50%) rotate(308.4deg) translateY(-150px) rotate(-308.4deg);
    }
    
    .app-icon {
        width: 40px;
        height: 40px;
    }
    
    .app-label {
        font-size: 0.8rem;
        bottom: -20px;
    }
    

    

}

/* Chakra Sections */
.chakra-section {
    padding: 80px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    scroll-margin-top: 100px;
}



.section-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.chakra-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.chakra-title-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.status-chip {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Chakra-specific chip colors */
.money-chakra .status-chip.available {
    background: #F44336; /* Rojo - Chakra Raíz */
    color: white;
}

.crea-chakra .status-chip.available {
    background: #FF9800; /* Naranja - Chakra Sacro */
    color: white;
}

.control-chakra .status-chip.available {
    background: #FFEB3B; /* Amarillo - Chakra Ombligo */
    color: #333;
}

.genius-chakra .status-chip.available {
    background: #4CAF50; /* Verde - Chakra Corazón */
    color: white;
}

.express-chakra .status-chip.available {
    background: #03A9F4; /* Azul - Chakra Garganta */
    color: white;
}

.totem-chakra .status-chip.available {
    background: #3F51B5; /* Índigo - Chakra Tercer Ojo */
    color: white;
}

.dreams-chakra .status-chip.available {
    background: #991fff; /* Violeta - Chakra Corona */
    color: white;
}

/* Hover effects for available chips */
.status-chip.available:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.status-chip.disabled {
    background: #9e9e9e;
    color: white;
    cursor: default;
}

.chakra-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.chakra-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.chakra-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 0;
}

/* Donation Section */
.donation-section {
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    border: 2px solid #dee2e6;
}

.donation-text {
    font-size: 1.2rem;
    color: #495057;
    margin-bottom: 20px;
    font-weight: 500;
}

.donation-button {
    display: inline-block;
    background: #6c757d;
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

.donation-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(108, 117, 125, 0.5);
    background: #5a6268;
    color: #fff;
}



/* Disabled section effect */
.chakra-section.disabled {
    transition: all 0.3s ease;
}

.chakra-section.disabled .chakra-icon {
    filter: grayscale(100%);
    opacity: 0.7;
}

.chakra-section.disabled .status-chip {
    filter: none;
    opacity: 1;
    cursor: default;
    pointer-events: none;
}

.chakra-section.disabled h2 {
    filter: none;
    opacity: 1;
}

.chakra-section.disabled p {
    filter: none;
    opacity: 1;
}



/* Responsive Design for Chakra Sections */
@media (max-width: 768px) {
    .chakra-section {
        padding: 60px 15px;
    }
    
    .chakra-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .chakra-icon {
        width: 60px;
        height: 60px;
    }
    
    .chakra-section h2 {
        font-size: 2rem;
    }
    
    .chakra-section p {
        font-size: 1rem;
    }
    
    .chakra-title-container {
        gap: 8px;
    }
    
    .status-chip {
        font-size: 0.7rem;
        padding: 3px 10px;
    }
}

/* Footer */
.footer {
    background: #f8f9fa;
    padding: 40px 0;
    margin-top: 60px;
    border-top: 1px solid #e9ecef;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-signature {
    font-weight: 500;
    color: #888;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 10px;
    }
    .footer-signature {
        margin-top: 10px;
    }
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 0;
}

.footer-links a:hover {
    color: #000;
}

.footer-links a[href*="coff.ee"] {
    background: #6c757d;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-links a[href*="coff.ee"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.4);
    background: #5a6268;
    color: #fff;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer {
        padding: 30px 0;
        margin-top: 40px;
    }
    
    .footer-links {
        gap: 30px;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
}