/* =========================
   GLOBAL
   ========================= */
body {
    margin: 0;
    background: linear-gradient(to bottom, #ede7f6, #c9b6e4);
    color: #2b183d;
    font-family: "Comic Sans MS", Arial, Helvetica, sans-serif;
}

/* =========================
   HEADER
   ========================= */

.header {
    background: linear-gradient(to bottom,
        #6a3fa0,
        #4a2a6a,
        #2b183d);
    border-bottom: 5px ridge #ffffff;
}

.header-main {
    max-width: 1000px;
    margin: auto;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 30px;
    font-weight: bold;
    color: #ffffff;
    text-shadow:
        2px 2px 0 #1a0f26,
        -1px -1px 0 #bfa6e6;
}

.logo-studios {
    font-size: 14px;
    color: #e6ddff;
    margin-left: 4px;
}

/* =========================
   NAV
   ========================= */
.nav-btn {
    background: linear-gradient(to bottom,
        #ffffff,
        #d6c6ef);
    border: 2px solid #5a328c;
    padding: 4px 10px;
    color: #2b183d;
    font-weight: bold;
    text-decoration: none;
    margin-left: 5px;

    box-shadow:
        inset 1px 1px 0 #ffffff,
        inset -1px -1px 0 rgba(0,0,0,0.3),
        1px 1px 0 #1a0f26;
}

.nav-btn:hover {
    background: linear-gradient(to bottom,
        #ffffff,
        #e6ddff);
}

/* =========================
   LAYOUT
   ========================= */
.container {
    max-width: 1000px;
    margin: auto;
    padding: 15px;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

/* =========================
   ANIMATED BANNER (DIAGONAL PURPLE)
   ========================= */
@keyframes bannerShift {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 100%; }
}

.banner {
    background:
        repeating-linear-gradient(
            135deg,
            #9b6dd6 0px,
            #9b6dd6 48px,
            #4a2a6a 48px,
            #4a2a6a 96px
        );

    background-size: 200% 200%;
    animation: bannerShift 14s linear infinite;

    border: 4px ridge #ffffff;
    padding: 20px;
    text-align: center;

    color: #ffffff;

    text-shadow:
        1px 1px 0 #4a2a6a,
        2px 2px 0 #1a0f26;
}

.banner h1 {
    margin: 0;
    font-size: 28px;
}

.banner p {
    font-size: 14px;
}

/* =========================
   CONSTRUCTION
   ========================= */
.construction {
    margin: 15px 0;
    padding: 8px;
    background: #ffffff;
    border: 2px dashed #7b4db3;
    text-align: center;
    font-size: 12px;
    color: #4a2a6a;
}

/* =========================
   BOXES
   ========================= */
.box {
    background: linear-gradient(to bottom,
        #ffffff,
        #efe8fb);
    border: 3px ridge #7b4db3;
    padding: 10px;

    box-shadow:
        inset 1px 1px 0 #ffffff,
        inset -1px -1px 0 rgba(0,0,0,0.25);
}

.box h2 {
    background: linear-gradient(to bottom,
        #9b6dd6,
        #6a3fa0);

    margin: -10px -10px 10px -10px;
    padding: 6px;

    color: #ffffff;
    border-bottom: 2px solid #ffffff;

    text-shadow:
        1px 1px 0 #1a0f26;
}

/* =========================
   BUTTONS (PURPLE + WHITE)
   ========================= */
.button {
    background: linear-gradient(to bottom,
        #ffffff,
        #c9a6ff,
        #9b5de5);

    border: 3px solid #6a3fa0;
    border-radius: 6px;

    color: #2b183d;
    font-weight: bold;
    text-decoration: none;

    padding: 6px 14px;
    display: inline-block;
    cursor: pointer;

    text-shadow: 0 1px 0 #ffffff;

    box-shadow:
        inset 1px 1px 0 #ffffff,
        inset -1px -1px 0 rgba(0,0,0,0.3),
        2px 2px 0 #4a2a6a;
}

.button:hover {
    background: linear-gradient(to bottom,
        #ffffff,
        #e6ddff,
        #b87cff);
}

.button:active {
    transform: translate(1px, 1px);
    box-shadow:
        inset 2px 2px 3px rgba(0,0,0,0.4);
}

/* =========================
   FOOTER
   ========================= */
.footer {
    margin-top: 30px;
    background: linear-gradient(to bottom,
        #ffffff,
        #d6c6ef);
    border-top: 5px ridge #7b4db3;
    text-align: center;
    padding: 20px;
    font-size: 11px;
    color: #2b183d;
}