.elementor-9901 .elementor-element.elementor-element-5624d52{--display:flex;}.elementor-9901 .elementor-element.elementor-element-5624d52:not(.elementor-motion-effects-element-type-background), .elementor-9901 .elementor-element.elementor-element-5624d52 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#12141CEB;}/* Start custom CSS for html, class: .elementor-element-19238f0 */body {
            color: #e0e0e0;
        }

        /* Animated binary code background */
        .binary-background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.03;
            z-index: -1;
            overflow: hidden;
        }

        .binary-code {
            color: #00ff9d;
            font-size: 16px;
            white-space: nowrap;
            position: absolute;
            animation: scrollBinary 20s linear infinite;
        }

        @keyframes scrollBinary {
            0% { transform: translateY(-100%); }
            100% { transform: translateY(100vh); }
        }

        .subtitle {
            font-size: 1.2rem;
            color: #8a8a8a;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.5;
        }

        .cyber-icon {
            color: #00ff9d;
            margin: 0 10px;
        }

        /* Main container for the months */
        .container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: calc(100vh - 200px);
            padding: 30px 20px;
        }

        .months-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 25px;
            max-width: 1200px;
            width: 100%;
            margin: 30px auto;
            padding: 20px;
        }

        /* Month box styling */
        .month-box {
            background: rgba(18, 25, 40, 0.85);
            border: 1px solid rgba(0, 255, 157, 0.3);
            border-radius: 10px;
            padding: 25px 15px;
            text-align: center;
            text-decoration: none;
            color: #e0e0e0;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 180px;
        }

        .month-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 255, 157, 0.1), transparent);
            transition: left 0.7s ease;
            z-index: -1;
        }

        .month-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 255, 157, 0.2);
            border-color: #00ff9d;
        }

        .month-box:hover::before {
            left: 100%;
        }

        .month-name {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: #ffffff;
            text-shadow: 0 0 8px rgba(0, 255, 157, 0.5);
        }

        .month-desc {
            font-size: 0.9rem;
            color: #8a8a8a;
            margin-bottom: 15px;
            line-height: 1.4;
        }

        .month-icon {
            font-size: 2.2rem;
            margin-bottom: 15px;
            color: #00ff9d;
        }

        .security-badge {
            background-color: rgba(0, 184, 255, 0.2);
            color: #00b8ff;
            font-size: 0.8rem;
            padding: 4px 10px;
            border-radius: 20px;
            border: 1px solid rgba(0, 184, 255, 0.5);
        }

        .footer-text {
            color: #8a8a8a;
            font-size: 0.95rem;
        }

        .hacker-icon {
            color: #00ff9d;
            margin: 0 5px;
        }

        /* Responsive adjustments */
        @media (max-width: 1100px) {
            .months-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 768px) {
            .months-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            
            .month-box {
                min-height: 160px;
                padding: 20px 15px;
            }
            
            .month-name {
                font-size: 1.6rem;
            }
        }

        @media (max-width: 480px) {
            .months-grid {
                grid-template-columns: 1fr;
                max-width: 300px;
            }
            
            .month-box {
                min-height: 150px;
            }
        }

        /* Focus states for accessibility */
        .month-box:focus {
            outline: 2px solid #00ff9d;
            outline-offset: 3px;
        }/* End custom CSS */