    :root {
        --bg-dark: #000000;
        --bg-card: #1a1a1a;
        --primary: #ffffff;
        --text-primary: #ffffff;
        --text-secondary: #a0a0a0;
        --border: rgba(255, 255, 255, 0.2);
        --discord: #5865f2;
        --success: #10b981;
        --accent: #666666;
        --paper: #f4efe8;
        --hex-c1: #1d1d1d;
        --hex-c2: #4e4f51;
        --hex-c3: #3c3c3c;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Literata', 'Inter', -apple-system, serif;
        color: var(--text-primary);
        line-height: 1.6;
        overflow-x: hidden;
        -webkit-text-size-adjust: 100%;
        touch-action: manipulation;
        position: relative;
        background: #000000;
        --gap: 5em;
        --line: 1px;
        --color: rgba(255, 255, 255, 0.2);
        background-image: linear-gradient(
            -90deg,
            transparent calc(var(--gap) - var(--line)),
            var(--color) calc(var(--gap) - var(--line) + 1px),
            var(--color) var(--gap)
        ),
        linear-gradient(
            0deg,
            transparent calc(var(--gap) - var(--line)),
            var(--color) calc(var(--gap) - var(--line) + 1px),
            var(--color) var(--gap)
        );
        background-size: var(--gap) var(--gap);
        background-attachment: fixed;
    }

    /* Overlay sutil para suavizar o padrão */
    body::before {
        content: '';
        position: fixed;
        inset: 0;
        background: linear-gradient(180deg, 
            rgba(29, 29, 29, 0.3) 0%, 
            rgba(29, 29, 29, 0.1) 50%, 
            rgba(29, 29, 29, 0.3) 100%
        );
        z-index: 0;
        pointer-events: none;
        opacity: 0.6;
    }

    /* Grid overlay sutil */
    body::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: 
            linear-gradient(rgba(200, 180, 149, 0.02) 1px, transparent 1px),
            linear-gradient(90deg, rgba(200, 180, 149, 0.02) 1px, transparent 1px);
        background-size: 50px 50px;
        z-index: 0;
        pointer-events: none;
    }

    #preloader {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--bg-dark);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 9999;
        transition: opacity 0.5s ease, visibility 0.5s ease;
    }

    #preloader.hidden {
        opacity: 0;
        visibility: hidden;
    }

    .preloader-logo {
        animation: pulse 2s ease-in-out infinite;
    }

    @keyframes pulse {
        0%, 100% {
            opacity: 1;
            transform: scale(1);
        }
        50% {
            opacity: 0.6;
            transform: scale(1.05);
        }
    }

    #cat-cursor {
        display: none;
        pointer-events: none;
        position: fixed;
        z-index: 999999;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;
        position: relative;
        z-index: 1;
    }

    header {
        position: fixed;
        top: 0;
        width: 100%;
        background: rgba(29, 29, 29, 0.95);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border);
        z-index: 1000;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    }

    nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 16px 0;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 24px;
        font-family: 'Literata', serif;
        font-weight: 700;
        text-decoration: none;
        color: var(--primary);
        transition: color 0.3s;
    }

    .logo-icon {
        width: 36px;
        height: 36px;
        flex-shrink: 0;
    }

    .nav-links {
        display: flex;
        list-style: none;
        gap: 8px;
    }

    .nav-links a {
        padding: 8px 16px;
        border-radius: 8px;
        text-decoration: none;
        color: var(--text-secondary);
        font-weight: 500;
        font-size: 14px;
        transition: all 0.2s;
    }

    .nav-links a:hover {
        color: var(--text-primary);
        background: rgba(255, 255, 255, 0.08);
    }

    .nav-links .gabaritos-btn {
        background: linear-gradient(135deg, rgba(88, 101, 242, 0.25), rgba(88, 101, 242, 0.15));
        border: 1px solid rgba(88, 101, 242, 0.4);
        color: var(--discord);
        padding: 8px 14px;
    }

    .nav-links .gabaritos-btn:hover {
        background: linear-gradient(135deg, rgba(88, 101, 242, 0.35), rgba(88, 101, 242, 0.25));
        border-color: rgba(88, 101, 242, 0.6);
        box-shadow: 0 4px 12px rgba(88, 101, 242, 0.3);
    }

    .hamburger {
        display: none;
        border-radius: 16px;
        border: 1px solid #1a1a1a;
        background: rgba(74, 74, 74, 0.39);
        mix-blend-mode: luminosity;
        box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.20);
        backdrop-filter: blur(15px);
        width: 65px;
        height: 65px;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        padding: 16px;
    }

    .hamburger span {
        display: block;
        width: 100%;
        height: 2px;
        border-radius: 2px;
        background-color: rgb(0, 122, 255);
        box-shadow: 0 0.5px 2px 0 rgba(0, 0, 0, 0.2);
        transition: background-color 0.4s;
        position: relative;
    }

    .hamburger span + span {
        margin-top: 6px;
    }

    .hamburger span:nth-child(1) {
        animation: ease 0.8s menu-icon-top-2 forwards;
    }

    .hamburger span:nth-child(2) {
        animation: ease 0.8s menu-icon-scaled-2 forwards;
    }

    .hamburger span:nth-child(3) {
        animation: ease 0.8s menu-icon-bottom-2 forwards;
    }

    .hamburger:hover span:nth-child(1) {
        animation: ease 0.8s menu-icon-top forwards;
    }

    .hamburger:hover span:nth-child(2) {
        animation: ease 0.8s menu-icon-scaled forwards;
    }

    .hamburger:hover span:nth-child(3) {
        animation: ease 0.8s menu-icon-bottom forwards;
        background-color: rgb(255, 59, 48);
    }

    @keyframes menu-icon-top {
        0% {
            top: 0;
            transform: rotate(0);
        }
        50% {
            top: 8px;
            transform: rotate(0);
        }
        100% {
            top: 8px;
            transform: rotate(45deg);
        }
    }

    @keyframes menu-icon-top-2 {
        0% {
            top: 8px;
            transform: rotate(45deg);
        }
        50% {
            top: 8px;
            transform: rotate(0);
        }
        100% {
            top: 0;
            transform: rotate(0);
        }
    }

    @keyframes menu-icon-bottom {
        0% {
            bottom: 0;
            transform: rotate(0);
        }
        50% {
            bottom: 8px;
            transform: rotate(0);
        }
        100% {
            bottom: 8px;
            transform: rotate(135deg);
        }
    }

    @keyframes menu-icon-bottom-2 {
        0% {
            bottom: 8px;
            transform: rotate(135deg);
        }
        50% {
            bottom: 8px;
            transform: rotate(0);
        }
        100% {
            bottom: 0;
            transform: rotate(0);
        }
    }

    @keyframes menu-icon-scaled {
        50% {
            transform: scale(0);
        }
        100% {
            transform: scale(0);
        }
    }

    @keyframes menu-icon-scaled-2 {
        0% {
            transform: scale(0);
        }
        50% {
            transform: scale(0);
        }
        100% {
            transform: scale(1);
        }
    }

    .mobile-menu {
        display: none;
        list-style: none;
        flex-direction: column;
        background: rgba(29, 29, 29, 0.98);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border);
    }

    .mobile-menu.active {
        display: flex;
    }

    .mobile-menu a {
        display: block;
        padding: 16px 24px;
        color: var(--text-primary);
        text-decoration: none;
        border-bottom: 1px solid var(--border);
    }

    .mobile-menu .gabaritos-btn {
        background: linear-gradient(135deg, rgba(88, 101, 242, 0.25), rgba(88, 101, 242, 0.15));
        color: var(--discord);
        font-weight: 600;
        padding: 12px 24px;
    }

    .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 120px 0 60px;
        position: relative;
    }

    .hero h1 {
        font-size: clamp(40px, 6vw, 72px);
        font-weight: 800;
        margin-bottom: 16px;
        letter-spacing: -0.02em;
        min-height: 80px;
        color: var(--primary);
        font-family: 'Literata', serif;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    }

    .hero h1::after {
        content: '_';
        animation: blink 0.7s infinite;
    }

    @keyframes blink {
        50% { opacity: 0; }
    }

    .hero p {
        font-size: 18px;
        color: var(--text-secondary);
        margin-bottom: 40px;
    }

    .countdown-section {
        margin: 40px 0;
    }

    .countdown-title {
        font-size: 18px;
        font-weight: 500;
        color: var(--text-secondary);
        margin-bottom: 20px;
    }

    .countdown-timer {
        display: flex;
        justify-content: center;
        gap: 16px;
        flex-wrap: wrap;
    }

    .countdown-item {
        background: linear-gradient(145deg, rgba(42, 42, 42, 0.8), rgba(35, 35, 35, 0.9));
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 16px 20px;
        min-width: 80px;
        text-align: center;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    }

    .countdown-item span:first-child {
        display: block;
        font-size: 32px;
        font-weight: 700;
        line-height: 1;
        margin-bottom: 4px;
        color: var(--primary);
    }

    .countdown-item span:last-child {
        font-size: 12px;
        text-transform: uppercase;
        color: var(--text-secondary);
        font-weight: 600;
        letter-spacing: 0.05em;
    }

    .greeting {
        font-size: 24px;
        font-weight: 600;
        margin: 32px 0;
        min-height: 36px;
    }

    .greeting::after {
        content: '|';
        margin-left: 4px;
        animation: blink 0.7s infinite;
    }

    .btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 14px 28px;
        background: var(--primary);
        color: var(--bg-dark);
        border-radius: 12px;
        font-weight: 600;
        font-size: 15px;
        text-decoration: none;
        transition: all 0.2s;
        border: none;
        cursor: pointer;
        touch-action: manipulation;
        box-shadow: 0 4px 15px rgba(200, 180, 149, 0.3);
    }

    .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(200, 180, 149, 0.5);
    }

    .announcements-carousel-wrapper {
        margin: -40px 0 60px;
        position: relative;
    }

    .announcements-title {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 16px;
        color: var(--discord);
        font-weight: 700;
        font-size: 16px;
    }

    .announcements-title i {
        font-size: 20px;
    }

    .announcements-carousel {
        display: flex;
        gap: 16px;
        padding-bottom: 16px;
        position: relative;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }

    .announcements-slides {
        display: contents;
    }

    @media (min-width: 769px) {
        .announcements-carousel {
            overflow-x: visible;
            flex-wrap: wrap;
            justify-content: flex-start;
        }
        
        .discord-announcement {
            scroll-snap-align: none;
        }
    }

    @media (max-width: 768px) {
        .announcements-carousel {
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            flex-wrap: nowrap;
        }
    }

    .announcements-carousel::-webkit-scrollbar {
        height: 8px;
    }

    .announcements-carousel::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 4px;
    }

    .announcements-carousel::-webkit-scrollbar-thumb {
        background: var(--discord);
        border-radius: 4px;
    }

    .announcements-carousel::-webkit-scrollbar-thumb:hover {
        background: #4752c4;
    }

    .discord-announcement {
        background: linear-gradient(145deg, rgba(88, 101, 242, 0.12), rgba(88, 101, 242, 0.06));
        border: 1px solid rgba(88, 101, 242, 0.35);
        border-radius: 16px;
        padding: 24px;
        transition: all 0.3s;
        position: relative;
        min-width: 350px;
        max-width: 350px;
        scroll-snap-align: start;
        flex-shrink: 0;
        overflow: hidden;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    }

    @media (max-width: 768px) {
        .discord-announcement {
            min-width: calc(100vw - 48px);
            max-width: calc(100vw - 48px);
            width: calc(100vw - 48px);
        }
    }

    .discord-announcement:hover {
        transform: translateY(-4px);
        border-color: rgba(88, 101, 242, 0.6);
        box-shadow: 0 10px 30px rgba(88, 101, 242, 0.3);
    }

    .announcement-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 12px;
        padding-bottom: 12px;
        border-bottom: 1px solid rgba(88, 101, 242, 0.2);
    }

    .announcement-timestamp {
        font-size: 12px;
        color: var(--text-secondary);
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .announcement-date {
        font-weight: 600;
    }

    .announcement-time {
        opacity: 0.7;
    }

    .announcement-indicator {
        width: 8px;
        height: 8px;
        background: var(--discord);
        border-radius: 50%;
        box-shadow: 0 0 10px var(--discord);
    }

    .announcement-body p {
        font-size: 15px;
        line-height: 1.7;
        color: var(--text-secondary);
        white-space: pre-wrap;
        margin-bottom: 12px;
        word-wrap: break-word;
        word-break: break-word;
        overflow-wrap: anywhere;
        hyphens: auto;
    }

    .announcement-body a {
        color: var(--discord);
        text-decoration: none;
        font-weight: 600;
        transition: all 0.2s;
        border-bottom: 2px solid transparent;
        word-wrap: break-word;
        word-break: break-all;
        overflow-wrap: anywhere;
        display: inline;
        max-width: 100%;
        hyphens: auto;
    }

    .announcement-body a:hover {
        border-bottom-color: var(--discord);
        opacity: 0.8;
    }

    .announcement-author {
        font-size: 14px;
        font-style: italic;
        text-align: right;
        opacity: 0.7;
        margin-top: 16px;
        padding-top: 12px;
        border-top: 1px solid rgba(88, 101, 242, 0.2);
    }

    .carousel-nav {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 16px;
    }

    .carousel-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(88, 101, 242, 0.3);
        cursor: pointer;
        transition: all 0.3s;
    }

    .carousel-dot.active {
        background: var(--discord);
        width: 24px;
        border-radius: 4px;
    }

    .scripts-section {
        padding: 80px 0 120px;
        position: relative;
        background: transparent;
        border-radius: 20px;
        backdrop-filter: none;
        border: none;
        margin: 0 12px;
    }

    /* ===== Fundadores ===== */
    .founders-section {
        padding: 60px 0;
        margin: 0 12px 40px;
    }

    .founders-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        align-items: start;
        padding: 10px 20px 0 20px;
    }

    .founder-card {
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 16px;
        text-align: center;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
        transition: transform 0.18s ease, box-shadow 0.18s ease;
    }

    .founder-card img {
        width: 96px;
        height: 96px;
        object-fit: cover;
        border-radius: 50%;
        display: block;
        margin: 0 auto 12px auto;
        border: 2px solid rgba(200, 180, 149, 0.2);
    }

    .founder-name {
        font-size: 16px;
        margin: 6px 0 4px;
        color: var(--primary);
        font-family: 'Literata', serif;
    }

    .founder-role {
        font-size: 13px;
        color: var(--text-secondary);
        margin: 0;
    }

    .founder-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
        border-color: rgba(200, 180, 149, 0.3);
    }

    @media (max-width: 480px) {
        .founder-card img {
            width: 80px;
            height: 80px;
        }
    }

    .section-header {
        text-align: center;
        margin-bottom: 48px;
    }

    .section-title {
        font-size: clamp(32px, 4vw, 48px);
        font-weight: 800;
        letter-spacing: -0.02em;
        color: var(--primary);
        font-family: 'Literata', serif;
        position: relative;
        display: inline-flex;
        align-items: center;
        gap: 12px;
        padding: 0 20px;
        text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
    }

    .section-title::before,
    .section-title::after {
        content: '';
        position: absolute;
        top: 50%;
        width: 60px;
        height: 2px;
        background: var(--primary);
        opacity: 0.4;
    }

    .section-title::before {
        right: 100%;
    }

    .section-title::after {
        left: 100%;
    }

    .scripts-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 24px;
        padding: 20px 30px;
        position: relative;
    }

    .script-card {
        background: linear-gradient(145deg, rgba(42, 42, 42, 0.6), rgba(35, 35, 35, 0.8));
        border: 1px solid rgba(200, 180, 149, 0.15);
        border-radius: 12px;
        padding: 22px;
        transition: transform 0.25s ease, box-shadow 0.25s ease;
        position: relative;
        overflow: hidden;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
        color: var(--text-primary);
        display: flex;
        flex-direction: column;
    }    .script-card::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/png;base64,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');
        opacity: 0.02;
        mix-blend-mode: overlay;
        pointer-events: none;
    }

    .script-card:hover {
        transform: translateY(-6px) scale(1.015);
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.7);
        border-color: rgba(200, 180, 149, 0.3);
    }

    .script-card:hover::before {
        transform: scaleX(1);
    }

    .card-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 16px;
    }

    .card-category {
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        color: #c8b495;
        letter-spacing: 0.05em;
        font-family: 'Literata', serif;
        position: relative;
        display: inline-block;
        padding: 2px 8px;
        background: rgba(200, 180, 149, 0.15);
        border-radius: 3px;
        border: 1px solid rgba(200, 180, 149, 0.2);
    }

    .card-status {
        padding: 4px 10px;
        border-radius: 3px;
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        background: rgba(16, 185, 129, 0.15);
        color: #10b981;
        font-family: 'Literata', serif;
        border: 1px solid rgba(16, 185, 129, 0.3);
    }

    .card-title {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 8px;
        color: var(--primary);
        font-family: 'Literata', serif;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    }

    .card-description {
        color: var(--text-secondary);
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 18px;
        font-family: 'Literata', serif;
        flex-grow: 1;
    }
    .card-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
        padding: 10px 12px;
        background: rgba(200, 180, 149, 0.1);
        border: 1px solid rgba(200, 180, 149, 0.2);
        border-radius: 10px;
        color: var(--primary);
        font-weight: 600;
        font-size: 14px;
        text-decoration: none;
        transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
        touch-action: manipulation;
        cursor: pointer;
        font-family: 'Literata', serif;
    }

    .card-button:hover {
        background: var(--primary);
        color: var(--bg-dark);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(200, 180, 149, 0.4);
    }

    .modal-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.85);
        backdrop-filter: blur(8px);
        z-index: 1999;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .modal-card {
        background: linear-gradient(145deg, rgba(42, 42, 42, 0.95), rgba(35, 35, 35, 0.95));
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: 32px;
        max-width: 500px;
        width: 90%;
        text-align: center;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
    }

    .modal-text {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 24px;
        text-align: left;
        color: var(--text-secondary);
    }

    .modal-text a {
        color: var(--discord);
        text-decoration: none;
        font-weight: 600;
        transition: all 0.2s;
        border-bottom: 2px solid transparent;
    }

    .modal-text a:hover {
        border-bottom-color: var(--discord);
        opacity: 0.8;
    }

    .modal-button {
        padding: 12px 28px;
        background: var(--primary);
        color: var(--bg-dark);
        border: none;
        border-radius: 10px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.2s;
        box-shadow: 0 4px 15px rgba(200, 180, 149, 0.3);
    }

    .modal-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(200, 180, 149, 0.5);
    }

    footer {
        padding: 60px 0 40px;
        text-align: center;
        border-top: 1px solid var(--border);
        position: relative;
        background: transparent;
    }

    footer p {
        color: var(--text-secondary);
        margin-bottom: 16px;
    }

    footer a {
        color: var(--primary);
        text-decoration: none;
        font-weight: 600;
        transition: color 0.2s;
    }

    footer a:hover {
        color: var(--text-primary);
    }

    footer img {
        max-width: 200px;
        border-radius: 12px;
        margin-top: 16px;
        border: 1px solid var(--border);
    }

    @media (max-width: 768px) {
        .container {
            padding: 0 16px;
        }

        .nav-links {
            display: none;
        }

        .hamburger {
            display: flex;
        }

        .logo {
            font-size: 16px;
        }

        .logo-icon {
            width: 28px;
            height: 28px;
        }

        .hero {
            min-height: 90vh;
            padding: 100px 0 40px;
        }

        .hero h1 {
            font-size: clamp(32px, 10vw, 48px);
            min-height: 60px;
        }

        .hero p {
            font-size: 16px;
            margin-bottom: 32px;
        }

        .countdown-section {
            margin: 32px 0;
        }

        .countdown-title {
            font-size: 16px;
        }

        .countdown-timer {
            gap: 12px;
        }

        .countdown-item {
            min-width: 65px;
            padding: 12px 14px;
        }

        .countdown-item span:first-child {
            font-size: 24px;
        }

        .countdown-item span:last-child {
            font-size: 11px;
        }

        .greeting {
            font-size: 20px;
            margin: 24px 0;
        }

        .btn {
            padding: 12px 24px;
            font-size: 14px;
        }

        .announcements-carousel-wrapper {
            margin: -20px 0 40px;
        }

        .announcements-carousel {
            padding: 0 0 16px 0;
            margin: 0 -16px;
            padding-left: 16px;
            padding-right: 16px;
        }

        .discord-announcement {
            min-width: calc(100vw - 48px);
            max-width: calc(100vw - 48px);
            width: calc(100vw - 48px);
        }

        .scripts-grid {
            padding: 20px 10px;
        }
    }

    /* small icon used inside section titles (e.g. Fundadores) */
    .section-title-icon {
        width: 40px;
        height: 40px;
        object-fit: cover;
        border-radius: 8px;
        border: 1px solid rgba(200, 180, 149, 0.2);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
        display: inline-block;
    }

    @media (max-width: 480px) {
        .section-title-icon {
            width: 28px;
            height: 28px;
        }
    }

    /* small avatar used next to Discord links (footer/header) */
    .discord-avatar {
        width: 22px;
        height: 22px;
        object-fit: cover;
        border-radius: 50%;
        display: inline-block;
        vertical-align: middle;
        margin-right: 6px;
        border: 1px solid rgba(200, 180, 149, 0.2);
    }

    @media (max-width: 480px) {
        .discord-avatar { 
            width: 18px; 
            height: 18px; 
            margin-right: 4px; 
        }
    } 
    /* Instagram Button Styles */
    .Btn {
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: none;
        background-color: transparent;
        position: relative;
        border-radius: 7px;
        cursor: pointer;
        transition: all .3s;
    }

    .svgContainer {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: transparent;
        backdrop-filter: blur(4px);
        letter-spacing: 0.8px;
        border-radius: 10px;
        transition: all .3s;
        border: 1px solid rgba(156, 156, 156, 0.466);
    }

    .BG {
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        background: #f09433;
        background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
        background: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
        background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
        z-index: -1;
        border-radius: 9px;
        pointer-events: none;
        transition: all .3s;
    }

    .Btn:hover .BG {
        transform: rotate(35deg);
        transform-origin: bottom;
    }

    .Btn:hover .svgContainer {
        background-color: rgba(156, 156, 156, 0.466);
    }