* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #fff9c4 0%, #ffe082 100%);
    min-height: 100vh;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    margin-bottom: 40px;
}

.logo {
    font-size: 48px;
    font-weight: 800;
    color: #ff1744;
    text-shadow: 3px 3px 0px #000, 5px 5px 0px rgba(0,0,0,0.2);
    letter-spacing: 3px;
}

.header-links {
    display: flex;
    gap: 20px;
}

.social-link {
    padding: 12px 24px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
    border: 3px solid #000;
}

.social-link:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Main Content */
.main-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

/* Character Section */
.character-section {
    position: sticky;
    top: 20px;
}

.character-image {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.character {
    position: relative;
    width: 100%;
    padding-bottom: 120%;
    background: transparent;
}

/* Hair */
.character-hair {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 40%;
    background: #5d4037;
    border-radius: 50% 50% 0 0;
    border: 4px solid #000;
    z-index: 1;
}

.hair-streak {
    position: absolute;
    top: 10%;
    width: 25%;
    height: 80%;
    background: #ffeb3b;
    border: 3px solid #000;
    border-radius: 50px;
}

.hair-streak.left {
    left: 10%;
    transform: rotate(-10deg);
}

.hair-streak.right {
    right: 10%;
    transform: rotate(10deg);
}

/* Face */
.character-face {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 35%;
    background: #fdbcb4;
    border: 4px solid #000;
    border-radius: 50%;
    z-index: 2;
}

/* Eyes */
.eyes {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    display: flex;
    justify-content: space-between;
    gap: 15%;
}

.eye {
    position: relative;
    width: 25%;
    height: 0;
    padding-bottom: 25%;
    background: #fff;
    border: 3px solid #000;
    border-radius: 50%;
    overflow: hidden;
}

.pupil {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: #000;
    border-radius: 50%;
}

.eyelash {
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 15px;
    background: #000;
    border-radius: 0 0 50% 50%;
}

/* Eyebrows */
.eyebrows {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    display: flex;
    justify-content: space-between;
    gap: 15%;
}

.eyebrow {
    width: 25%;
    height: 8px;
    background: #000;
    border-radius: 10px;
}

/* Mouth */
.mouth {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 25%;
    background: #ff1744;
    border: 3px solid #000;
    border-radius: 50%;
    overflow: hidden;
}

.mouth::after {
    content: '';
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 40%;
    background: #fff;
    border-radius: 0 0 50% 50%;
}

/* Body */
.character-body {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 45%;
    z-index: 2;
}

/* Top */
.top {
    position: relative;
    width: 100%;
    height: 35%;
    background: #000;
    border: 4px solid #000;
    border-radius: 20px 20px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.juicy-text {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 2px;
    text-shadow: 2px 2px 0px rgba(255,255,255,0.3);
}

/* Pants */
.pants {
    position: relative;
    width: 100%;
    height: 65%;
    background: #2196f3;
    border: 4px solid #000;
    border-radius: 0 0 20px 20px;
}

.pants::before,
.pants::after {
    content: '';
    position: absolute;
    top: 0;
    width: 3px;
    height: 100%;
    background: #1976d2;
}

.pants::before {
    left: 30%;
}

.pants::after {
    right: 30%;
}

/* Phone Arm */
.phone-arm {
    position: absolute;
    top: 50%;
    right: -15%;
    width: 20%;
    height: 30%;
    z-index: 3;
}

.phone-arm::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: #fdbcb4;
    border: 3px solid #000;
    border-radius: 20px;
    transform: rotate(-20deg);
}

.phone {
    position: absolute;
    top: 50%;
    right: -30%;
    width: 80px;
    height: 120px;
    background: #ff4081;
    border: 4px solid #000;
    border-radius: 15px;
    transform: rotate(-20deg);
}

.phone::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 20px;
    height: 20px;
    background: #ccc;
    border: 2px solid #000;
    border-radius: 50%;
}

/* Hip Arm */
.hip-arm {
    position: absolute;
    bottom: 20%;
    left: -10%;
    width: 15%;
    height: 25%;
    z-index: 3;
}

.hip-arm::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: #fdbcb4;
    border: 3px solid #000;
    border-radius: 20px;
    transform: rotate(30deg);
}

/* Subscription Section */
.subscription-section {
    position: relative;
}

.subscription-card {
    background: #fff;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    border: 4px solid #000;
}

.title {
    font-size: 42px;
    font-weight: 800;
    color: #ff1744;
    margin-bottom: 10px;
    text-align: center;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.1);
}

.subtitle {
    font-size: 18px;
    color: #666;
    text-align: center;
    margin-bottom: 40px;
}

/* Pricing Plans */
.pricing-plans {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.plan-card {
    background: #f5f5f5;
    border: 3px solid #000;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    transition: all 0.3s;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.plan-card.featured {
    background: linear-gradient(135deg, #ff1744 0%, #ff6b9d 100%);
    color: #fff;
    border-width: 4px;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffeb3b;
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    border: 3px solid #000;
}

.plan-name {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.plan-price {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
}

.plan-price span {
    font-size: 18px;
    font-weight: 400;
}

.savings {
    background: #000;
    color: #ffeb3b;
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
}

.plan-features {
    list-style: none;
    margin-bottom: 25px;
}

.plan-features li {
    padding: 8px 0;
    font-size: 16px;
}

.subscribe-btn {
    width: 100%;
    padding: 15px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.subscribe-btn:hover {
    background: #333;
    transform: scale(1.05);
}

.plan-card.featured .subscribe-btn {
    background: #fff;
    color: #ff1744;
}

.plan-card.featured .subscribe-btn:hover {
    background: #ffeb3b;
    color: #000;
}

/* Payment Section */
.payment-section {
    margin-bottom: 40px;
}

.payment-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
}

.payment-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.form-group input {
    padding: 15px;
    border: 3px solid #000;
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #ff1744;
    box-shadow: 0 0 0 3px rgba(255, 23, 68, 0.1);
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.checkbox-group label {
    margin: 0;
    font-size: 14px;
}

.checkbox-group a {
    color: #ff1744;
    text-decoration: none;
    font-weight: 700;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.submit-btn {
    padding: 18px;
    background: linear-gradient(135deg, #ff1744 0%, #ff6b9d 100%);
    color: #fff;
    border: 4px solid #000;
    border-radius: 15px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 23, 68, 0.4);
}

/* Social Section */
.social-section {
    border-top: 3px solid #000;
    padding-top: 30px;
    margin-top: 30px;
}

.social-section h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 25px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 15px;
    font-weight: 600;
    transition: all 0.3s;
    border: 3px solid #000;
}

.social-button:hover {
    background: #fff;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.twitter-btn:hover {
    background: #1da1f2;
    color: #fff;
    border-color: #1da1f2;
}

.contract-btn:hover {
    background: #ff1744;
    color: #fff;
    border-color: #ff1744;
}

/* Responsive */
@media (max-width: 1024px) {
    .main-content {
        grid-template-columns: 1fr;
    }
    
    .character-section {
        position: relative;
        top: 0;
    }
    
    .character-image {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 20px;
    }
    
    .logo {
        font-size: 36px;
    }
    
    .pricing-plans {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .title {
        font-size: 32px;
    }
    
    .subscription-card {
        padding: 25px;
    }
}

