
        :root {
            --dark-blue: #0a1429;
            --medium-blue: #0f1c36;
            --light-blue: #132546;
            --accent: #3a71ff;
            --gold: #ffb637;
            --text: #e6e6e6;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            background: linear-gradient(135deg, var(--dark-blue) 0%, #091221 100%);
            color: var(--text);
            line-height: 1.6;
            min-height: 100vh;
            padding: 20px 15px 60px;
            background-attachment: fixed;
        }
        
        .container {
            max-width: 500px;
            margin: 0 auto;
        }
        
        header {
            text-align: center;
            margin-bottom: 25px;
        }
        
        .logo {
            width: 120px;
            height: 120px;
            margin: 0 auto 15px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 3px solid var(--accent);
            box-shadow: 0 0 20px rgba(58, 113, 255, 0.4);
            overflow: hidden;
        }
        
        .logo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        h1 {
            font-family: 'Oxanium', cursive;
            font-weight: 700;
            font-size: 28px;
            letter-spacing: 1px;
            color: white;
            text-shadow: 0 0 10px rgba(58, 113, 255, 0.6);
            margin-bottom: 5px;
        }
        
        .subtitle {
            color: var(--accent);
            font-size: 14px;
            margin-bottom: 20px;
        }
        
        .links-container {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 30px;
        }
        
        .link-card {
            background: linear-gradient(135deg, var(--medium-blue) 0%, var(--light-blue) 100%);
            border: 1px solid rgba(58, 113, 255, 0.3);
            border-radius: 12px;
            padding: 15px 20px;
            display: flex;
            align-items: center;
            text-decoration: none;
            color: var(--text);
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        .link-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
            border-color: var(--accent);
            background: linear-gradient(135deg, var(--light-blue) 0%, #1a2f5d 100%);
        }
        
        .link-icon {
            width: 30px;
            height: 30px;
            background: rgba(58, 113, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
        }
        
        .link-icon i {
            color: var(--accent);
            font-size: 16px;
        }
        
        .link-text {
            flex: 1;
        }
        
        .link-text h3 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 2px;
        }
        
        .link-text p {
            font-size: 12px;
            color: #a0aec0;
        }
        
        .section-title {
            font-family: 'Oxanium', cursive;
            font-size: 20px;
            margin: 30px 0 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent);
            color: white;
            text-shadow: 0 0 5px rgba(58, 113, 255, 0.5);
        }
        
        .csfloat-section {
            background: linear-gradient(135deg, #1a2f5d 0%, #2a3f6d 100%);
            border-radius: 12px;
            padding: 20px;
            margin: 20px 0;
            border: 1px solid rgba(255, 182, 55, 0.3);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            text-align: center;
        }
        
        .csfloat-section h3 {
            color: var(--gold);
            font-size: 20px;
            margin-bottom: 15px;
        }
        
        .carousel {
            position: relative;
            margin: 20px 0;
            overflow: hidden;
            border-radius: 10px;
        }
        
        .carousel-container {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .carousel-item {
            min-width: 100%;
            background: var(--medium-blue);
            border-radius: 10px;
            padding: 15px;
            box-sizing: border-box;
            text-align: center;
            border: 1px solid rgba(58, 113, 255, 0.2);
        }
        
        .carousel-item img {
            width: 100%;
            max-height: 200px;
            object-fit: contain;
            border-radius: 8px;
            margin-bottom: 10px;
            background: var(--dark-blue);
        }
        
        .carousel-item h4 {
            color: var(--gold);
            font-size: 16px;
            margin: 10px 0 5px;
        }
        
        .carousel-item p {
            font-size: 14px;
            color: #a0aec0;
            margin-bottom: 10px;
        }
        
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(58, 113, 255, 0.7);
            border: none;
            color: white;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            cursor: pointer;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .carousel-btn.prev {
            left: 10px;
        }
        
        .carousel-btn.next {
            right: 10px;
        }
        
        .carousel-indicators {
            display: flex;
            justify-content: center;
            margin-top: 15px;
            gap: 8px;
        }
        
        .carousel-indicator {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(58, 113, 255, 0.3);
            cursor: pointer;
            transition: background 0.3s ease;
        }
        
        .carousel-indicator.active {
            background: var(--accent);
        }
        
        .btn {
            background: linear-gradient(to right, var(--accent), #5a8cff);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-block;
            text-decoration: none;
            margin-top: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
            background: linear-gradient(to right, #5a8cff, var(--accent));
        }
        
        .news-container {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 30px;
        }
        
        .news-card {
            background: linear-gradient(135deg, var(--medium-blue) 0%, var(--light-blue) 100%);
            border-radius: 12px;
            padding: 20px;
            border: 1px solid rgba(58, 113, 255, 0.3);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        .news-card h3 {
            color: var(--gold);
            font-size: 16px;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        
        .news-card h3 i {
            margin-right: 8px;
            color: var(--accent);
        }
        
        .news-card p {
            font-size: 14px;
            margin-bottom: 15px;
        }
        
        .highlight {
            background: rgba(255, 182, 55, 0.1);
            border-left: 3px solid var(--gold);
            padding: 10px 15px;
            border-radius: 0 8px 8px 0;
            margin: 10px 0;
        }
        
        footer {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(58, 113, 255, 0.3);
        }
        
        .footer-text {
            font-size: 12px;
            color: #a0aec0;
            margin-bottom: 20px;
        }
        
        .social-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
        }
        
        .social-icons a {
            width: 40px;
            height: 40px;
            background: var(--medium-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text);
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid rgba(58, 113, 255, 0.3);
        }
        
        .social-icons a:hover {
            background: var(--accent);
            transform: translateY(-3px);
            color: white;
        }
        
        @media (max-width: 400px) {
            .carousel-btn {
                width: 30px;
                height: 30px;
            }
        }
