File size: 11,752 Bytes
82a7943
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9c1c74c
82a7943
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9c1c74c
 
82a7943
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9c1c74c
82a7943
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
df94569
82a7943
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Georgia Old School Championship Wrestling</title>
    <script src="https://cdn.tailwindcss.com"></script>
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
    <style>
        .wrestler-fist {
            background: linear-gradient(135deg, #ff0000 0%, #800000 100%);
            width: 120px;
            height: 120px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 20px rgba(0,0,0,0.3);
        }
        .wrestler-fist i {
            color: white;
            font-size: 60px;
            transform: rotate(-30deg);
            text-shadow: 3px 3px 0 rgba(0,0,0,0.2);
        }
        .event-card {
            transition: all 0.3s ease;
        }
        .event-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        .ticket-pulse {
            animation: pulse 2s infinite;
        }
    </style>
</head>
<body class="bg-gray-900 text-white font-sans">
    <!-- Header Section -->
    <header class="bg-red-900 text-white py-6 shadow-lg">
        <div class="container mx-auto px-4">
            <div class="flex flex-col md:flex-row justify-between items-center">
                <div class="flex items-center space-x-4 mb-4 md:mb-0">
                    <div class="wrestler-fist">
                        <i class="fas fa-fist-raised"></i>
                    </div>
                    <h1 class="text-3xl md:text-4xl font-extrabold tracking-tight">
                        <span class="block">Georgia Old School</span>
                        <span class="block">Championship Wrestling</span>
                    </h1>
                </div>
                <div class="bg-yellow-500 text-gray-900 font-bold px-6 py-2 rounded-full shadow-lg ticket-pulse">
                    Tickets: $12 | Kids 6 & under FREE!
                </div>
            </div>
        </div>
    </header>

    <!-- Main Content -->
    <main class="container mx-auto px-4 py-12">
        <section class="mb-16">
            <h2 class="text-3xl font-bold mb-8 text-center relative">
                <span class="bg-gray-900 px-6 relative z-10">Upcoming Events</span>
                <span class="absolute left-0 right-0 top-1/2 h-1 bg-red-700 z-0"></span>
            </h2>

            <div class="grid md:grid-cols-2 gap-8">
                <!-- Event 1 -->
                <div class="event-card bg-gray-800 rounded-lg overflow-hidden shadow-xl border-t-4 border-red-700">
                    <div class="p-6">
                        <div class="flex flex-col md:flex-row items-center mb-6">
                            <div class="wrestler-fist mb-4 md:mb-0 md:mr-6">
                                <i class="fas fa-fist-raised"></i>
                            </div>
                            <div class="text-center md:text-left">
                                <h3 class="text-2xl font-bold text-yellow -400">Southern Slugfest</h3>
                                <p class="text-red-400 font-semibold">June 14th, 2024</p>
                            </div>
                        </div>
                        <div class="space-y-4">
                            <div class="flex items-center">
                                <i class="fas fa-map-marker-alt text-red-500 mr-3 text-xl"></i>
                                <p>Moultrie, GA</p>
                            </div>
                            <div class="flex items-center">
                                <i class="fas fa-door-open text-red-500 mr-3 text-xl"></i>
                                <p>Doors Open: 6:00 PM</p>
                            </div>
                            <div class="flex items-center">
                                <i class="fas fa-bell text-red-500 mr-3 text-xl"></i>
                                <p>Show Starts: 7:00 PM</p>
                            </div>
                            <div class="flex items-center">
                                <i class="fas fa-ticket-alt text-red-500 mr-3 text-xl"></i>
                                <p>Tickets: $12 (Kids 6 & under FREE)</p>
                            </div>
                           
                            </div>
                            <div class="pt-4 border-t border-gray-700">
                                <p class="italic text-gray-400 mb-3">Get ready for the most intense wrestling action of the summer! Southern Slugfest will feature championship matches, grudge matches, and surprises you won't want to miss!</p>
                             
                                </button>
                            </div>
                        </div>
                    </div>
                </div>

                <!-- Event 2 -->
                <div class="event-card bg-gray-800 rounded-lg overflow-hidden shadow-xl border-t-4 border-red-700">
                    <div class="p-6">
                        <div class="flex flex-col md:flex-row items-center mb-6">
                            <div class="wrestler-fist mb-4 md:mb-0 md:mr-6">
                                <i class="fas fa-fist-raised"></i>
                            </div>
                            <div class="text-center md:text-left">
                                <h3 class="text-2xl font-bold text-yellow-400">Buff's Bash</h3>
                                <p class="text-red-400 font-semibold">August 2nd, 2024</p>
                            </div>
                        </div>
                        <div class="space-y-4">
                            <div class="flex items-center">
                                <i class="fas fa-map-marker-alt text-red-500 mr-3 text-xl"></i>
                                <p>Moultrie, GA</p>
                            </div>
                            <div class="flex items-center">
                                <i class="fas fa-door-open text-red-500 mr-3 text-xl"></i>
                                <p>Doors Open: 6:00 PM</p>
                            </div>
                            <div class="flex items-center">
                                <i class="fas fa-bell text-red-500 mr-3 text-xl"></i>
                                <p>Show Starts: 7:00 PM</p>
                            </div>
                            </div>
                             <div class="flex items-center">
                                <i class="fas fa-ticket-alt text-red-500 mr-3 text-xl"></i>
                                <p>Tickets: $12 (Kids 6 & under FREE)</p>
                            </div>
                        
                            </div>
                            <div class="pt-4 border-t border-gray-700">
                                <p class="italic text-gray-400 mb-3">    Buffs Bash! Located at the Tommy Meredith Gym in Moultrie, Ga. Staring WCW and WWF Buff Bagwell! 2 exciting Titile Matches and an amazing Ladies match!! Catch Buff Bagwell, Buddy Golden, Danny Stratos, Sam Phoenix and many more!!! Dont miss your chance to meet an NWO member in person!!!! </p>
                               
                              
                            </div>
                        </div>
                    </div>
                </div>
            </div>
        </section>
                <div class="text-center">
                    <div class="bg-red-800 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4">
                        <i class="fas fa-clock text-2xl text-yellow-400"></i>
                    </div>
                    <h3 class="font-bold mb-2">Ticket Prices</h3>
                    <p>All Ticket $12 at the door</p>
                    <p>Kids 6 and under Free with paid adult</p>
                </div>
                <div class="text-center">
                    <div class="bg-red-800 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4">
                        <i class="fas fa-clock text-2xl text-yellow-400"></i>
                    </div>
                    <h3 class="font-bold mb-2">Show Times</h3>
                    <p>Doors Open: 6:00 PM</p>
                    <p>Show Starts: 7:00 PM</p>
                </div>
               
                <div class="text-center">
                    <div class="bg-red-800 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4">
                        <i class="fas fa-question-circle text-2xl text-yellow-400"></i>
                    </div>
                    <h3 class="font-bold mb-2">More Info</h3>
                    <p>Concessions available</p>
                    <p>Family-friendly environment</p>
                </div>   <div class="text-center">
                    <div class="bg-red-800 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4">
                        <i class="fas fa-question-circle text-2xl text-yellow-400"></i>
                    </div>
                    <h3 class="font-bold mb-2">Contact Us</h3>
                    <p>Email: oldschoolwrestling25@gmail.com</p>
                    <p>Phone: 229-206-1609 / 229-309-0788 /  229-205-6430 / 229-254-0524</p>
            </div>
        </section>
    </main>

    <!-- Footer -->
    <footer class="bg-gray-900 border-t border-gray-800 py-8">
        <div class="container mx-auto px-4 text-center">
            <div class="flex justify-center space-x-6 mb-6">
                <a href="#" class="text-gray-400 hover:text-red-500 text-2xl">
                 
                </a>
            </div>
            <p class="text-gray-500">© 2025 Georgia Old School Championship Wrestling LLC. All rights reserved.</p>
            <p class="text-gray-600 text-sm mt-2">Relive the golden era of professional wrestling!</p>
        </div>
    </footer>

    <script>
        // Simple animation for ticket buttons
        document.querySelectorAll('button').forEach(button => {
            button.addEventListener('mouseenter', function() {
                this.classList.add('animate-bounce');
            });
            button.addEventListener('mouseleave', function() {
$0
                this.classList.remove('animate-bounce');
            });
        });
    </script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=GOSCW25/goscw-event-calender" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>

        <!-- Additional Info Section -->
        <section class="bg-gray-800 rounded-lg p-8 shadow-lg">
            <h2 class="text-2xl font-bold mb-6 text-yellow-400 text-center">KEEP IT OLD SCHOOL</h2>
            <div class="grid md:grid-cols-3 gap-8">
                <div class="text-center">
                    <div class="bg-red-800 w-16 h-16 rounded-full flex items-center justify-cent