        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Roboto', sans-serif;
        }

        body {
            background-color: #291f75;
            color: #1f1f1f;
            padding: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
        }

        .main-panel {
            background-color: #ffffff;
            border: 1px solid #c1c9d2;
            border-radius: 4px;
            max-width: 900px;
            width: 100%;
            padding: 25px;
        }

        .profile-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 2px solid #c1c9d2;
            padding-bottom: 15px;
            margin-bottom: 25px;
            flex-wrap: wrap;
            gap: 15px;
        }

        .logo-placeholder {
            width: 280px;
            height: 50px;
            background-image: url('img/logo.png');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: left;
            background-color: transparent;
            display: flex;
            align-items: left;
            justify-content: left;
            border-radius: 3px;
        }

        .profile-body {
            display: flex;
            flex-direction: row;
            gap: 25px;
            width: 100%;
            margin-bottom: 20px;
        }

        .info-section, .showcase-section {
            flex: 1;
            min-width: 0;
        }

        .info-section h2, .showcase-section h2 {
            font-size: 1.25rem;
            color: #1f1f1f;
            margin-bottom: 15px;
            border-bottom: 1px solid #c1c9d2;
            padding-bottom: 5px;
            text-transform: uppercase;
            font-weight: 700;
        }

        .description {
            font-size: 0.95rem;
            color: #1f1f1f;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .countdown-box {
            border: 1px solid #e67817;
            background-color: #ffffff;
            border-radius: 4px;
            padding: 15px;
        }

        .countdown-title {
            font-size: 0.85rem;
            font-weight: 700;
            color: #e67817;
            text-transform: uppercase;
            margin-bottom: 10px;
            display: block;
        }

        .timer-display {
            display: flex;
            gap: 12px;
        }

        .time-segment {
            font-size: 1.3rem;
            font-weight: 700;
            color: #1f1f1f;
        }

        .time-segment span {
            color: #e67817;
        }

        .game-features-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .feature-row {
            background-color: #e9e9e9;
            border: 1px solid #c1c9d2;
            border-radius: 4px;
            padding: 12px;
        }

        .feature-row strong {
            color: #e67817;
            font-size: 0.95rem;
            display: block;
            margin-bottom: 4px;
        }

        .feature-row p {
            font-size: 0.85rem;
            color: #1f1f1f;
            line-height: 1.4;
        }

        .notify-section {
            border-top: 2px solid #c1c9d2;
            padding-top: 20px;
            margin-top: 10px;
        }

        .notify-section h3 {
            font-size: 1.1rem;
            text-transform: uppercase;
            margin-bottom: 10px;
            color: #1f1f1f;
        }

        .notify-form {
            display: flex;
            gap: 10px;
            width: 100%;
        }

        .notify-input {
            flex: 1;
            padding: 10px 12px;
            border: 1px solid #c1c9d2;
            border-radius: 3px;
            font-size: 0.95rem;
            outline: none;
        }

        .notify-input:focus {
            border-color: #E67817;
        }

        .notify-btn {
            background-color: #E67817;
            color: #ffffff;
            border: none;
            padding: 10px 20px;
            font-weight: 700;
            font-size: 0.9rem;
            text-transform: uppercase;
            border-radius: 3px;
            cursor: pointer;
            transition: background-color 0.2s;
        }

        .notify-btn:hover {
            background-color: #bd5f0f;
        }

        .form-message {
            font-size: 0.9rem;
            font-weight: 500;
            margin-top: 10px;
            display: none;
        }
        
        .form-message.error {
            color: #dc2626;
            display: block;
        }

        .form-message.success {
            color: #16a34a;
            display: block;
        }

        @media (max-width: 768px) {
            body {
                align-items: flex-start;
            }

            .profile-body {
                flex-direction: column;
                gap: 20px;
            }
            
            .profile-header {
                flex-direction: column;
                align-items: flex-start;
            }

            .logo-placeholder {
                width: 100%;
                max-width: 320px;
                background-position: left center;
            }

            .notify-form {
                flex-direction: column;
            }

            .notify-btn {
                width: 100%;
            }
        }
