:root {
            --shines-gold-primary: #D4AF37;
            --shines-gold-secondary: #F5E8B5;
            --shines-purple-primary: #6A0DAD;
            --shines-purple-secondary: #9D4EDD;
            --shines-dark-primary: #1A1A2E;
            --shines-light-primary: #F8F9FA;
            --shines-gray-primary: #6C757D;
            --shines-danger-color: #dc3545;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: var(--shines-light-primary);
            color: var(--shines-dark-primary);
            line-height: 1.6;
        }
        
        .shines-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        .shines-header {
            background: linear-gradient(135deg, var(--shines-purple-primary), var(--shines-dark-primary));
            color: white;
            padding: 20px 0;
            position: relative;
            overflow: hidden;
        }
        
        .shines-header::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(212, 175, 55, 0.1)"/></svg>');
            background-size: cover;
        }
        
        .shines-header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        
        .shines-logo {
            display: flex;
            align-items: center;
        }
        
        .shines-logo-icon {
            font-size: 2.5rem;
            color: var(--shines-gold-primary);
            margin-right: 10px;
        }
        
        .shines-logo-text {
            font-size: 1.8rem;
            font-weight: 700;
        }
        
        .shines-logo-accent {
            color: var(--shines-gold-primary);
        }
        
        .shines-navigation ul {
            display: flex;
            list-style: none;
        }
        
        .shines-navigation-item {
            margin-left: 20px;
        }
        
        .shines-navigation-link {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .shines-navigation-link:hover {
            color: var(--shines-gold-primary);
        }
        
        .shines-mobile-menu {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        /* Hero Section */
        .shines-hero-section {
            background: linear-gradient(rgba(106, 13, 173, 0.9), rgba(26, 26, 46, 0.9)), url('static/aa.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
            text-align: center;
        }
        
        .shines-hero-title {
            font-size: 2.5rem;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .shines-hero-description {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
        }
        
        .shines-button-primary {
            display: inline-block;
            background: linear-gradient(to right, var(--shines-gold-primary), var(--shines-purple-secondary));
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }
        
        .shines-button-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        }
        
        /* Sections */
        .shines-section {
            padding: 80px 0;
        }
        
        .shines-section-title-container {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .shines-section-title {
            font-size: 2.2rem;
            color: var(--shines-purple-primary);
            position: relative;
            display: inline-block;
            margin-bottom: 15px;
        }
        
        .shines-section-title::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--shines-gold-primary);
            border-radius: 2px;
        }
        
        .shines-section-subtitle {
            color: var(--shines-gray-primary);
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* About Section */
        .shines-about-content {
            display: flex;
            align-items: center;
            gap: 40px;
        }
        
        .shines-about-text {
            flex: 1;
        }
        
        .shines-about-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .shines-about-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        /* Features Section */
        .shines-features-section {
            background-color: #f8f5ff;
        }
        
        .shines-features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .shines-feature-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            text-align: center;
        }
        
        .shines-feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .shines-feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--shines-purple-secondary), var(--shines-gold-primary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 1.8rem;
        }
        
        .shines-feature-title {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--shines-purple-primary);
        }
        
        /* Community Section */
        .shines-community-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        
        .shines-community-stats {
            display: flex;
            justify-content: space-around;
            width: 100%;
            max-width: 800px;
            margin: 40px 0;
        }
        
        .shines-stat-item {
            text-align: center;
        }
        
        .shines-stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--shines-purple-primary);
            display: block;
        }
        
        .shines-stat-label {
            color: var(--shines-gray-primary);
            font-size: 1rem;
        }
        
        /* Learning Section */
        .shines-learning-section {
            background-color: #f8f5ff;
        }
        
        .shines-learning-tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }
        
        .shines-tab {
            padding: 12px 25px;
            background: white;
            border: none;
            border-radius: 30px;
            margin: 0 10px 10px;
            cursor: pointer;
            font-weight: 600;
            color: var(--shines-gray-primary);
            transition: all 0.3s;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
        }
        
        .shines-tab-active {
            background: linear-gradient(to right, var(--shines-purple-primary), var(--shines-purple-secondary));
            color: white;
        }
        
        .shines-learning-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .shines-learning-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
        }
        
        .shines-learning-card:hover {
            transform: translateY(-5px);
        }
        
        .shines-learning-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }
        
        .shines-learning-card-content {
            padding: 20px;
        }
        
        .shines-learning-card-title {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--shines-purple-primary);
        }
        
        .shines-learning-card-description {
            color: var(--shines-gray-primary);
            margin-bottom: 15px;
        }
        
        .shines-learning-meta {
            display: flex;
            justify-content: space-between;
            color: var(--shines-gray-primary);
            font-size: 0.9rem;
        }
        
        /* CTA Section */
        .shines-cta-section {
            background: linear-gradient(135deg, var(--shines-purple-primary), var(--shines-dark-primary));
            color: white;
            text-align: center;
            padding: 80px 0;
        }
        
        .shines-cta-title {
            font-size: 2.2rem;
            margin-bottom: 20px;
        }
        
        .shines-cta-description {
            max-width: 700px;
            margin: 0 auto 30px;
            font-size: 1.1rem;
        }
        
        /* Danger Warning */
        .shines-danger-warning {
            background-color: #fff3cd;
            border: 1px solid #ffeaa7;
            border-left: 5px solid var(--shines-danger-color);
            padding: 20px;
            margin: 30px 0;
            border-radius: 5px;
        }
        
        .shines-danger-warning-title {
            color: var(--shines-danger-color);
            font-weight: bold;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        
        .shines-danger-warning-title i {
            margin-right: 10px;
            font-size: 1.2rem;
        }
        
        .shines-danger-warning-content {
            color: #856404;
        }
        
        /* Footer */
        .shines-footer {
            background: var(--shines-dark-primary);
            color: white;
            padding: 60px 0 0;
        }
        
        .shines-footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .shines-footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: var(--shines-gold-primary);
            position: relative;
            padding-bottom: 10px;
        }
        
        .shines-footer-column h3::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--shines-gold-primary);
        }
        
        .shines-footer-column ul {
            list-style: none;
        }
        
        .shines-footer-column ul li {
            margin-bottom: 10px;
        }
        
        .shines-footer-column ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .shines-footer-column ul li a:hover {
            color: var(--shines-gold-primary);
        }
        
        .shines-social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .shines-social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            text-decoration: none;
            transition: background 0.3s, transform 0.3s;
        }
        
        .shines-social-link:hover {
            background: var(--shines-gold-primary);
            transform: translateY(-3px);
        }
        
        .shines-footer-bottom {
            background: rgba(0, 0, 0, 0.2);
            padding: 20px 0;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .shines-footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 15px;
        }
        
        .shines-footer-link {
            color: #ccc;
            margin: 0 15px;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .shines-footer-link:hover {
            color: var(--shines-gold-primary);
        }
        
        .shines-copyright {
            color: #999;
            font-size: 0.9rem;
        }
        
        /* Floating Contact */
        .shines-floating-contact {
            position: fixed;
            bottom: 130px;
            right: 30px;
            z-index: 1000;
        }
        
        .shines-whatsapp-float {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background: #25D366;
            color: white;
            border-radius: 50%;
            font-size: 1.8rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s, box-shadow 0.3s;
            text-decoration: none;
        }
        
        .shines-whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
        }
        
        /* Modal */
        .shines-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 1001;
            align-items: center;
            justify-content: center;
        }
        
        .shines-modal-content {
            background: white;
            border-radius: 10px;
            width: 90%;
            max-width: 600px;
            max-height: 80vh;
            overflow-y: auto;
            padding: 30px;
            position: relative;
        }
        
        .shines-close-modal {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--shines-gray-primary);
        }
        
        .shines-modal-title {
            color: var(--shines-purple-primary);
            margin-bottom: 20px;
            font-size: 1.8rem;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .shines-about-content {
                flex-direction: column;
            }
            
            .shines-about-image {
                order: -1;
            }
        }
        
        @media (max-width: 768px) {
            .shines-header-content {
                flex-direction: column;
                text-align: center;
            }
            
            .shines-logo {
                margin-bottom: 15px;
            }
            
            .shines-navigation ul {
                margin-top: 15px;
            }
            
            .shines-mobile-menu {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
            
            .shines-navigation ul {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-top: 20px;
            }
            
            .shines-navigation ul.show {
                display: flex;
            }
            
            .shines-navigation-item {
                margin: 10px 0;
            }
            
            .shines-hero-title {
                font-size: 2rem;
            }
            
            .shines-section-title {
                font-size: 1.8rem;
            }
            
            .shines-community-stats {
                flex-direction: column;
                gap: 30px;
            }
            
            .shines-footer-content {
                grid-template-columns: 1fr;
            }
        }