* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #e0e0e0;
    line-height: 1.6;
    padding: 20px;
}

.container {
    max-width: 900px;
    margin: 0 auto;
}

.step {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

h1 {
    color: #e5a00d;
    font-size: 2.5em;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

h2 {
    color: #ffc107;
    font-size: 2em;
    margin-bottom: 15px;
}

h3 {
    color: #ffca28;
    font-size: 1.4em;
    margin: 25px 0 15px 0;
}

.columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 25px 0;
}

.column {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #e5a00d;
}

ul {
    list-style: none;
    padding-left: 0;
}

li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

li:before {
    content: "▶";
    position: absolute;
    left: 0;
    color: #e5a00d;
}

.button {
    display: inline-block;
    background: linear-gradient(135deg, #e5a00d 0%, #cc8f0a 100%);
    color: #1a1a2e;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1em;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(229, 160, 13, 0.3);
}

.button:hover {
    background: linear-gradient(135deg, #ffc107 0%, #e5a00d 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229, 160, 13, 0.4);
}

.tips {
    background: rgba(229, 160, 13, 0.1);
    border-left: 4px solid #e5a00d;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.tips ol {
    list-style-position: inside;
    padding-left: 20px;
}

.tips li {
    padding-left: 10px;
    margin: 10px 0;
}

.tips li:before {
    content: none;
}

.highlight {
    color: #ffc107;
    font-weight: 600;
}

.emoji {
    font-size: 1.2em;
}

p {
    margin: 15px 0;
    font-size: 1.05em;
}

.media-placeholder {
    background: rgba(229, 160, 13, 0.1);
    border: 2px dashed rgba(229, 160, 13, 0.3);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    margin: 25px 0;
    color: #ffc107;
}


/* Option 5: Underlined Accent */
        .home-underline {
            padding: 20px 0;
            margin-bottom: 40px;
            border-bottom: 4px solid #e5a00d;
            text-align: left;
        }

        .home-underline a {
            color: #ffc107;
            text-decoration: none;
            font-size: 2.2em;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 15px;
            transition: all 0.3s ease;
        }

        .home-underline a:hover {
            color: #e5a00d;
            transform: translateX(10px);
        }

        /* Section separator */
        .option-separator {
            margin: 60px 0;
            text-align: center;
            color: #e5a00d;
            font-size: 1.5em;
        }

/* Additional modern styling that complements modern.css */
        body {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .utility-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 20px;
            flex: 1;
        }

        .utility-step {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 40px;
            margin-bottom: 30px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .utility-step:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
        }

        .utility-tips {
            background: rgba(229, 160, 13, 0.1);
            border-left: 4px solid #e5a00d;
            padding: 20px;
            border-radius: 8px;
            margin: 20px 0;
        }

        .utility-tips h3 {
            color: #ffca28;
            font-size: 1.4em;
            margin: 0 0 10px 0;
        }

        .utility-tips h3 a {
            color: #ffc107;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .utility-tips h3 a:hover {
            color: #e5a00d;
        }

        .utility-tips p {
            color: #e0e0e0;
            margin: 0;
            font-size: 1.05em;
        }

        .utility-placeholder {
            background: rgba(229, 160, 13, 0.1);
            border: 2px dashed rgba(229, 160, 13, 0.3);
            border-radius: 12px;
            padding: 30px;
            text-align: center;
            margin: 25px 0;
            color: #ffc107;
        }

        .utility-placeholder h3 {
            color: #ffc107;
            margin-bottom: 15px;
        }

        .utility-placeholder p {
            margin: 0;
        }

        .utility-placeholder a {
            color: #e5a00d;
            text-decoration: underline;
        }

        .modern-footer {
            background: rgba(26, 26, 46, 0.8);
            backdrop-filter: blur(10px);
            padding: 15px 30px;
            border-radius: 8px 8px 0 0;
            border-top: 2px solid rgba(229, 160, 13, 0.5);
            box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            width: 100%;
            font-size: 20px;
            z-index: 10;
            text-align: center;
        }

        .modern-footer:hover {
            padding: 25px 30px 15px 30px;
            box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.4);
            bottom: 5px;
        }

        .modern-footer * {
            transition: transform 0.3s ease;
        }

        .modern-footer:hover * {
            transform: translateY(-5px);
        }

        .modern-footer a {
            color: #ffc107;
            transition: color 0.3s ease, transform 0.3s ease;
            text-decoration: none;
        }

        .modern-footer a:hover {
            color: #e5a00d;
        }

        .footer-background {
            background: rgba(26, 26, 46, 0.8);
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            width: 100%;
            height: 5px;
            z-index: 5;
        }

        .emoji {
            font-size: 1.2em;
        }

        h1 {
            color: #e5a00d;
            font-size: 2.5em;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
            justify-content: left;
            padding-left: 15%;
        }