/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
    --zenthos-red: #ff0015;
    --zenthos-dark-red: #8a000b;
    --bg-color: #050505;
    --panel-bg: #0d0d0d;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Rajdhani', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-image: radial-gradient(circle at center, #1a0000 0%, #050505 100%);
}

.terminal-box {
    background: var(--panel-bg);
    padding: 40px;
    border: 1px solid rgba(255, 0, 21, 0.2);
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(255, 0, 21, 0.15), inset 0 0 15px rgba(255, 0, 21, 0.05);
    width: 100%;
    max-width: 450px;
    text-align: center;
    position: relative;
}

.terminal-box::before, .terminal-box::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid var(--zenthos-red);
    border-radius: 5px;
    opacity: 0.5;
}
.terminal-box::before { top: -2px; left: -2px; border-right: none; border-bottom: none; }
.terminal-box::after { bottom: -2px; right: -2px; border-left: none; border-top: none; }

h1 {
    color: var(--text-main);
    font-size: 26px;
    letter-spacing: 4px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

h1 span {
    color: var(--zenthos-red);
    text-shadow: 0 0 15px var(--zenthos-red);
}

p { color: var(--text-muted); font-size: 16px; margin-bottom: 30px; }

/* Social Buttons */
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 14px;
    margin: 12px 0;
    background: #111;
    color: var(--text-main);
    border: 1px solid #333;
    border-radius: 8px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    box-sizing: border-box;
}

.btn:hover, .btn.active {
    background: rgba(255, 0, 21, 0.1);
    border-color: var(--zenthos-red);
    box-shadow: 0 0 15px rgba(255, 0, 21, 0.3);
    color: var(--zenthos-red);
}

#giveawayForm { display: none; margin-top: 30px; }

.input-group {
    position: relative;
    margin: 18px 0;
}

.input-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--zenthos-red);
    font-size: 16px;
}

input {
    width: 100%;
    padding: 14px 14px 14px 45px;
    background: #0a0a0a;
    border: 1px solid #333;
    border-radius: 8px;
    color: var(--text-main);
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    box-sizing: border-box;
    transition: 0.3s;
}

input:focus {
    outline: none;
    border-color: var(--zenthos-red);
    box-shadow: 0 0 10px rgba(255, 0, 21, 0.2);
}

.submit-btn {
    width: 100%;
    background: linear-gradient(90deg, var(--zenthos-dark-red), var(--zenthos-red), var(--zenthos-dark-red));
    background-size: 200% auto;
    color: #fff;
    border: none;
    padding: 16px;
    margin-top: 25px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
    transition: 0.5s;
}

.submit-btn:hover {
    background-position: right center;
    box-shadow: 0 0 25px rgba(255, 0, 21, 0.6);
}

.heading {
    font-family: 'Iceberg';
}