/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    width: 100%;
}

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

/* Typography */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.red-text {
    color: #dc2626;
}

.golden-text {
    color: #d4af37;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.green-text {
    color: #22c55e;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a0a 50%, #2a0a0a 100%);
    background-image: 
        linear-gradient(rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.7)),
        url('attached_assets/generated_images/Dark_romantic_website_background_dea7c0a7.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(220, 38, 38, 0.1) 50%,
        rgba(0, 0, 0, 0.9) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    padding: 40px;
}

.logo h1 {
    font-size: 4rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 
        0 0 20px rgba(220, 38, 38, 0.5),
        0 0 40px rgba(220, 38, 38, 0.3),
        2px 2px 4px rgba(0, 0, 0, 0.8);
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.hero-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.subtitle {
    font-size: 1.2rem;
    color: #dc2626;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.description {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.bold-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.hero-cta {
    margin-top: 2rem;
    text-align: center;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
}

.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-text p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Forbidden Section */
.forbidden-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a0a0a 0%, #0a0a0a 50%, #2a1010 100%);
    background-image: 
        linear-gradient(rgba(26, 10, 10, 0.8), rgba(10, 10, 10, 0.8)),
        url('attached_assets/generated_images/Elegant_burgundy_abstract_background_0f34d42f.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.forbidden-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.forbidden-image {
    text-align: center;
}

.portrait-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(220, 38, 38, 0.2);
}

.forbidden-text h2 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.forbidden-text h3 {
    font-size: 2rem;
    color: #cccccc;
    margin-bottom: 2rem;
}

.forbidden-list {
    list-style: none;
}

.forbidden-list li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #cccccc;
    display: flex;
    align-items: center;
}

/* Product Section */
.product-section {
    padding: 100px 0;
    background: #0a0a0a;
    text-align: center;
}

.product-combo {
    max-width: 1000px;
    margin: 0 auto;
}

.product-combo img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.3);
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a1010 100%);
}

.reviews-section h2 {
    color: #ffffff;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.review-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.review-item:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.5);
}

.reviewer-header {
    margin-bottom: 20px;
}

.reviewer-name {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.stars {
    color: #ffd700;
    font-size: 1.1rem;
}

.rating-text {
    color: #ffffff;
    font-weight: 600;
}

.review-date {
    color: #aaaaaa;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.verified-purchase {
    color: #22c55e;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.review-content p {
    color: #e5e5e5;
    line-height: 1.6;
    margin-bottom: 15px;
}

.review-content strong {
    color: #ffffff;
}

.review-helpful {
    color: #aaaaaa;
    font-size: 0.9rem;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Love Control Section */
.love-control-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a0a0a 0%, #0a0a0a 100%);
}

.love-control-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.love-text h2 {
    font-size: 3rem;
    line-height: 1.2;
}

.love-images {
    display: flex;
    justify-content: center;
    align-items: center;
}

.love-control-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.3);
}

/* Video Placeholder Styles */
.video-placeholder {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a1010 100%);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.3);
    border: 2px solid #dc2626;
}

.video-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, 
        rgba(26, 26, 26, 0.9) 0%, 
        rgba(42, 16, 16, 0.9) 50%, 
        rgba(26, 26, 26, 0.9) 100%);
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-frame:hover {
    background: linear-gradient(45deg, 
        rgba(34, 34, 34, 0.9) 0%, 
        rgba(50, 20, 20, 0.9) 50%, 
        rgba(34, 34, 34, 0.9) 100%);
}

.play-button {
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.video-frame:hover .play-button {
    transform: scale(1.1);
}

.video-text {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.video-text span {
    display: block;
    color: #dc2626;
    font-size: 1rem;
    font-weight: 400;
    margin-top: 5px;
}

.video-cta {
    margin-top: 2rem;
    text-align: center;
}

/* Domination Section */
.domination-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a0505 50%, #0a0a0a 100%);
}

.domination-section h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 2rem;
}

.domination-desc {
    font-size: 1.1rem;
    color: #cccccc;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 3rem auto;
    line-height: 1.8;
}

.domination-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
    columns: 2;
    column-gap: 40px;
}

.domination-list li {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #cccccc;
    break-inside: avoid;
    padding: 10px 0;
}

/* Content Grid Section */
.content-grid-section {
    padding: 100px 0;
    background: #0a0a0a;
}

.content-grid-section h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.grid-item {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a1010 100%);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #dc2626;
    text-align: center;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(220, 38, 38, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(220, 38, 38, 0.2);
}

.grid-icon {
    font-size: 2rem;
    color: #dc2626;
    margin-bottom: 1rem;
}

.grid-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.grid-item p {
    font-size: 0.9rem;
    color: #cccccc;
    line-height: 1.6;
}

/* Self Control Section */
.self-control-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #1a0505 0%, #0a0a0a 100%);
}

.self-control-section h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 2rem;
}

.self-control-desc {
    font-size: 1.1rem;
    color: #cccccc;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 3rem auto;
    line-height: 1.8;
}

.self-control-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
    columns: 2;
    column-gap: 40px;
}

.self-control-list li {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #cccccc;
    break-inside: avoid;
    padding: 10px 0;
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background: #0a0a0a;
}

.benefits-section h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
}

.benefits-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    text-align: center;
    margin-bottom: 4rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-item {
    position: relative;
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid #dc2626;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.2);
    transition: transform 0.3s ease;
    min-height: 250px;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.benefit-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 20px;
    text-align: center;
}

.benefit-overlay h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.benefit-overlay p {
    font-size: 0.9rem;
    color: #cccccc;
}

/* Mobile optimizations for benefits */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .benefit-item {
        min-height: 220px;
    }
    
    .benefit-item img {
        height: 160px;
    }
    
    .benefit-overlay {
        padding: 15px;
    }
    
    .benefit-overlay h3 {
        font-size: 1.1rem;
    }
    
    .benefit-overlay p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .benefit-item {
        min-height: 200px;
    }
    
    .benefit-item img {
        height: 140px;
    }
}

/* Final Message Section */
.final-message-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a0a0a 0%, #0a0a0a 50%, #2a1010 100%);
    background-image: 
        linear-gradient(rgba(26, 10, 10, 0.8), rgba(10, 10, 10, 0.8)),
        url('attached_assets/generated_images/Renaissance_romantic_background_b14fe810.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.final-message-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.final-content {
    max-width: 1000px;
    margin: 0 auto;
}

.final-content p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.8;
    text-align: justify;
}

.final-bold {
    font-weight: 600;
    color: #ffffff !important;
}

/* Video Highlight Styles */
.special-video {
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    color: #000 !important;
    font-weight: 700;
    border-radius: 8px;
    padding: 15px;
    margin: 10px 0;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.video-highlight {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 2px solid #d4af37;
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
    text-align: center;
}

.video-highlight p {
    color: #ffffff;
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.6;
}

.video-highlight strong {
    color: #ffd700;
    font-size: 1.2rem;
}

/* Purchase Section */
.purchase-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0505 50%, #0a0a0a 100%);
    text-align: center;
}

.purchase-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #d4af37, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-offer {
    text-align: center;
    margin-bottom: 3rem;
    padding: 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a1010 100%);
    border-radius: 15px;
    border: 2px solid #d4af37;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.old-price {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 10px;
}

.strikethrough {
    text-decoration: line-through;
    color: #888;
}

.new-price {
    font-size: 2rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 10px;
}

.highlight-price {
    color: #22c55e;
    font-size: 2.5rem;
}

.discount-badge {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
    margin-top: 10px;
}

.offer-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #ffffff;
}

.offer-includes {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 2px solid #dc2626;
}

.offer-includes h4 {
    color: #d4af37;
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-align: center;
}

.main-products {
    margin-bottom: 20px;
}

.product-item {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #333;
}

.bonus-title {
    color: #22c55e;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

.single-bonus {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.bonus-showcase {
    display: flex;
    align-items: center;
    gap: 30px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a1010 100%);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #d4af37;
    max-width: 800px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.bonus-showcase img {
    width: 200px;
    height: auto;
    border-radius: 10px;
    flex-shrink: 0;
}

.bonus-details {
    flex: 1;
    text-align: left;
}

.bonus-label {
    color: #d4af37;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.bonus-details h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.2;
}

.bonus-details p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 15px;
    font-style: italic;
}

.bonus-value {
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 10px;
}

.old-bonus-price {
    text-decoration: line-through;
    color: #888;
    font-weight: 600;
}

.bonus-free {
    color: #22c55e;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
}

.guarantee {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a1010 100%);
    border: 2px solid #22c55e;
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin: 2rem 0;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.2);
}

.guarantee-badge {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.4);
}

.guarantee-days {
    font-size: 1.2rem;
    font-weight: 900;
    color: white;
    line-height: 1;
}

.guarantee-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
    margin-top: 2px;
}

.guarantee-content {
    flex: 1;
    text-align: left;
}

.guarantee-content h4 {
    font-size: 1.4rem;
    color: #22c55e;
    margin-bottom: 10px;
    font-weight: 700;
}

.guarantee-content p {
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 15px;
    line-height: 1.5;
}

.guarantee-features {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.guarantee-features span {
    font-size: 0.9rem;
    color: #22c55e;
    font-weight: 500;
}

/* Mobile responsive for guarantee */
@media (max-width: 768px) {
    .guarantee {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 25px 20px;
    }
    
    .guarantee-content {
        text-align: center;
    }
    
    .guarantee-features {
        justify-content: center;
    }
}

.main-purchase-btn {
    font-size: 1.5rem !important;
    padding: 25px 40px !important;
    margin: 2rem 0 !important;
}

.secure-payment {
    text-align: center;
    color: #22c55e;
    font-size: 1rem;
    margin-top: 1rem;
}

.purchase-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 4rem;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 4rem auto;
}

.bonus-item {
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid #d4af37;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    transition: transform 0.3s ease;
}

.bonus-item:hover {
    transform: translateY(-5px);
}

.bonus-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.bonus-info {
    padding: 20px;
    text-align: left;
}

.bonus-number {
    font-size: 0.8rem;
    color: #d4af37;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bonus-info h3 {
    font-size: 1.1rem;
    margin: 0.5rem 0;
}

.bonus-info p {
    font-size: 0.9rem;
    color: #cccccc;
}

.cta-button {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    padding: 20px 40px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 
        0 10px 30px rgba(220, 38, 38, 0.3),
        0 0 20px rgba(220, 38, 38, 0.2);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 15px 40px rgba(220, 38, 38, 0.4),
        0 0 30px rgba(220, 38, 38, 0.3);
}

/* Scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Final Machiavelli Section */
.final-machiavelli-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    background-image: 
        linear-gradient(rgba(10, 10, 10, 0.8), rgba(26, 26, 26, 0.8)),
        url('attached_assets/generated_images/Classical_Machiavellian_dark_background_67348d23.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.final-machiavelli-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.machiavelli-portrait img {
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.machiavelli-text h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.machiavelli-title {
    display: block;
    font-size: 4rem;
    background: linear-gradient(45deg, #dc2626, #b91c1c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.machiavelli-text p {
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.bonus-call {
    margin-top: 3rem;
    padding: 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a1010 100%);
    border-radius: 10px;
    border: 2px solid #dc2626;
    text-align: center;
}

.bonus-call h3 {
    font-size: 1.5rem;
    line-height: 1.3;
}

/* Enhanced Mobile Responsive Design */
@media (max-width: 1024px) {
    .forbidden-content,
    .love-control-content,
    .final-machiavelli-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    /* General adjustments */
    .container {
        padding: 0 20px;
    }
    
    /* Lists become single column */
    .domination-list,
    .self-control-list {
        columns: 1;
        max-width: 100%;
    }
    
    /* Hero Section Mobile */
    .hero-section {
        min-height: 90vh;
        padding: 20px 0;
    }
    
    .hero-content {
        padding: 30px 20px;
    }
    
    .logo h1 {
        font-size: 2.8rem;
        margin-bottom: 1.5rem;
        line-height: 1.1;
    }
    
    .hero-text h2 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .bold-text {
        font-size: 1.1rem;
    }
    
    /* Section spacing */
    .about-section,
    .forbidden-section,
    .product-section,
    .love-control-section,
    .domination-section,
    .content-grid-section,
    .self-control-section,
    .benefits-section,
    .final-message-section,
    .purchase-section,
    .final-machiavelli-section {
        padding: 60px 0;
    }
    
    /* Typography adjustments */
    h2 {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1.5rem !important;
    }
    
    h3 {
        font-size: 1.4rem !important;
        line-height: 1.3 !important;
    }
    
    /* Grid layouts */
    .content-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .grid-item {
        padding: 25px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .bonus-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    /* Product combo */
    .product-combo {
        max-width: 100%;
        padding: 0 10px;
    }
    
    /* Love control images */
    .love-images {
        flex-direction: column;
        gap: 20px;
    }
    
    /* Image sizing */
    .portrait-img {
        max-width: 300px;
    }
    
    .phone-mockup, .book-mockup {
        max-width: 250px;
    }
    
    .marionette-image {
        max-width: 150px;
    }
    
    /* Text sizing for readability */
    .about-text p,
    .domination-desc,
    .self-control-desc,
    .final-content p {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .domination-list li,
    .self-control-list li,
    .forbidden-list li {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
    }
}

@media (max-width: 480px) {
    /* Very small screens */
    .container {
        padding: 0 15px;
    }
    
    /* Hero adjustments */
    .logo h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .hero-text h2 {
        font-size: 1.6rem;
        line-height: 1.2;
    }
    
    .subtitle {
        font-size: 0.9rem;
    }
    
    .description,
    .bold-text {
        font-size: 0.95rem;
    }
    
    /* Reduced section spacing */
    .about-section,
    .forbidden-section,
    .product-section,
    .love-control-section,
    .domination-section,
    .content-grid-section,
    .self-control-section,
    .benefits-section,
    .final-message-section,
    .purchase-section,
    .final-machiavelli-section {
        padding: 40px 0;
    }
    
    /* Typography for very small screens */
    h2 {
        font-size: 1.8rem !important;
        margin-bottom: 1rem !important;
    }
    
    h3 {
        font-size: 1.2rem !important;
    }
    
    /* Grid items */
    .grid-item {
        padding: 20px;
    }
    
    .grid-item h3 {
        font-size: 1.1rem !important;
    }
    
    .grid-item p {
        font-size: 0.85rem;
    }
    
    /* Button adjustments */
    .cta-button {
        font-size: 0.95rem;
        padding: 15px 25px;
        line-height: 1.3;
    }
    
    /* Image sizing for very small screens */
    .portrait-img {
        max-width: 250px;
    }
    
    .phone-mockup, .book-mockup {
        max-width: 200px;
        padding: 15px;
    }
    
    .marionette-image {
        max-width: 120px;
    }
    
    /* Single column grids */
    .benefits-grid,
    .bonus-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* Forbidden text adjustments */
    .forbidden-text h2 {
        font-size: 2.5rem !important;
    }
    
    .forbidden-text h3 {
        font-size: 1.3rem !important;
    }
    
    /* Purchase title */
    .purchase-title {
        font-size: 1.8rem !important;
    }
    
    .purchase-subtitle {
        font-size: 1rem;
    }
    
    /* Machiavelli title */
    .machiavelli-title {
        font-size: 2.5rem !important;
    }
    
    /* Bonus call */
    .bonus-call h3 {
        font-size: 1.2rem !important;
    }
    
    /* Final content text */
    .final-content p {
        font-size: 0.95rem;
        text-align: left;
    }
}

@media (max-width: 320px) {
    /* Extra small screens */
    .container {
        padding: 0 10px;
    }
    
    .logo h1 {
        font-size: 1.8rem;
    }
    
    .hero-text h2 {
        font-size: 1.4rem;
    }
    
    h2 {
        font-size: 1.5rem !important;
    }
    
    .forbidden-text h2 {
        font-size: 2rem !important;
    }
    
    .grid-item {
        padding: 15px;
    }
    
    .cta-button {
        font-size: 0.9rem;
        padding: 12px 20px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
    height: 100%;
}

/* Ensure sections are visible */
section {
    position: relative;
    z-index: 1;
}

/* Selection colors */
::selection {
    background: rgba(220, 38, 38, 0.3);
    color: white;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: #dc2626;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b91c1c;
}